代码搜索:cannot
找到约 7,468 项符合「cannot」的源代码
代码结果 7,468
www.eeworm.com/read/233448/4675540
c enum1.c
// { dg-do assemble }
// Warn if a enum cannot fit into a small bit-field.
enum TypeKind { ATK, BTK, CTK, DTK } ;
struct Type {
enum TypeKind kind : 1; // { dg-warning "" }
void setBTK();
};
www.eeworm.com/read/233448/4676213
c eb26.c
// { dg-do run }
//
// egcs-2.90.06
// cannot declare friend of enclosing class using its scope, works fine
// without scope or for definition of foo::bar::f
//
class foo
{
public:
static int f();
www.eeworm.com/read/233448/4676312
mm objc-fast-4.mm
/* APPLE LOCAL file ObjC direct dispatch */
/* Check that 4015820 is fixed. That does not appear except
with -O0, so the sibcall case cannot occur. */
/* { dg-do compile { target powerpc*-*-darw
www.eeworm.com/read/233448/4676575
m objc-fast-4.m
/* APPLE LOCAL file ObjC direct dispatch */
/* Check that 4015820 is fixed. That does not appear except
with -O0, so the sibcall case cannot occur. */
/* { dg-do compile { target powerpc*-*-darw
www.eeworm.com/read/233448/4682124
c pr15262-2.c
/* PR 15262. Similar to pr15262-1.c but with no obvious addresses
being taken in function foo(). Without IPA, by only looking inside
foo() we cannot tell for certain whether 'q' and 'b' alias
www.eeworm.com/read/233448/4683659
c labels-3.c
/* This test does not compile on mips-irix6 using the native assembler,
though it does work with gas. See PR6200. Since we cannot (???)
distinguish which assembler is being used, always pass -
www.eeworm.com/read/233448/4684789
c scalar-by-value-4_main.c
/* Test passing scalars by value. This test includes _Complex types
whose real and imaginary parts cannot be used in variable-length
argument lists. */
extern void scalar_by_value_4_x (void);
www.eeworm.com/read/229812/4729841
msg log.msg
pick( LOG_CHOOSE_LOG_NAME,
"Choose Log Name",
"Choose Log Name" );
pick( LOG_CANT_OPEN_LOG,
"Cannot Open Log File!.\n(Probable Cause: invalid log file name)",
www.eeworm.com/read/229812/4738199
c diag0106.c
// unions cannot have static *data* members! *fn* members are OK
union U {
static int x;
static void foo();
};
static union {
static int x;
static void foo();
};
void f11()
www.eeworm.com/read/229812/4738326
c diag0210.c
// in general; a pointer cannot be cast to float/double or vice versa
double d;
float f;
long double l;
void *p;
void foo()
{
f = (float) p;
l = (long double) p;
d = (double) p;