⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 dllimport7.c

📁 gcc-you can use this code to learn something about gcc, and inquire further into linux,
💻 C
字号:
// { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }//  Report errors on definition of dllimport'd static data member . struct Baz{  Baz(int a_ =0) : a(a_) {};   int a;};class  __declspec(dllimport) Bar{  public:    enum {one = 1};    static const int two = 2;    static const int three;    static const Baz null_baz;};const int Bar::three = 3;	//  { dg-error "definition of static data" }const Baz Bar::null_baz;	//  { dg-error "definition of static data" }int foo(){  Bar foobar;  const int* baz = &Bar::two;   int a = foobar.two;  int b = foobar.three;  int c = foobar.null_baz.a;  return (a + b + c + *baz);}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -