代码搜索:cannot

找到约 7,468 项符合「cannot」的源代码

代码结果 7,468
www.eeworm.com/read/211505/15179208

c 1-3.c

#include #define BUFFER_SIZE 102400 typedef unsigned char byte; unsigned char buffer[BUFFER_SIZE]; int encode(FILE *fp,byte *img,int mx); /* mainㄧ计 */ int main(int ac,char *av
www.eeworm.com/read/211505/15179209

c 1-2.c

#include #define BUFFER_SIZE 102400 typedef unsigned char byte; unsigned char buffer[BUFFER_SIZE]; int encode(FILE *fp,byte *img,int mx); /* mainㄧ计 */ int main(int ac,char *av
www.eeworm.com/read/211505/15179210

c 1-1.c

#include #define BUFFER_SIZE 102400 typedef unsigned char byte; unsigned char buffer[BUFFER_SIZE]; int encode(FILE *fp,byte *img,int mx); /* main */ int main(int ac,char *av[]) { FIL
www.eeworm.com/read/173141/5379198

sql xasimplenegative.sql

-- -- some negative test for error checking -- xa_datasource 'wombat'; xa_connect user 'negativeTest' password 'xxx'; -- start new transaction xa_start xa_noflags 0; -- ERROR: cannot start without
www.eeworm.com/read/162614/5518741

c component1.c

// { dg-do compile } // Copyright (C) 2001, 2002 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 28 Dec 2001 // PR 5123. ICE struct C { template
www.eeworm.com/read/162614/5519670

c dcast1.c

// { dg-do assemble } class C { public: virtual void f(); }; extern volatile C* cp; extern volatile C& cr; void f () { dynamic_cast(cp); // { dg-error "" } cannot dynamic_cast dynamic
www.eeworm.com/read/162614/5520044

c vaarg3.c

// { dg-do assemble } // Copyright (C) 1999 Free Software Foundation, Inc. // Contributed by Nathan Sidwell 4 Oct 1999 // Make sure we diagnose bad uses of va_arg #include
www.eeworm.com/read/162614/5520280

c friend38.c

// { dg-do assemble } // Overly simplified from testcase by "B. K. Oxley" template struct foo { typedef P parent_type; friend parent_type; // { dg-error
www.eeworm.com/read/162614/5521569

c err-msg12.c

// { dg-do assemble } // GROUPS passed error-messages class foo { public: friend mutable int x ();// { dg-error "" } non-object member `x' cannot be declared `mutable' };
www.eeworm.com/read/162614/5521680

c p8460.c

// { dg-do assemble } // prms-id: 8460 class A { public: A(); A(int) { } A(const A&) { } private: }; int main() { A a; a.A(1); // { dg-error "" } cannot find name this way }