* g++.dg/ext/selectany1.C: New file. Test for linkonce sections.
[official-gcc.git] / gcc / testsuite / g++.dg / ext / dllimport8.C
blob7bc2b46b702e1da7e117bee091ea83cde056513c
1 //  PR c++/8378
2 //  Ignore  dllimport of static members if marked inlined.
3 //  or if definition follows  declaration in dllimported class.
5 // { dg-do compile { target i?86-*-cygwin* i?86-*-mingw*} }
6 // { dg-options { -Wall -W } }
8 struct  __attribute__((dllimport)) Foo
9  {
10     static int static_int;
11     static void static_func1();
12     static void static_func2();
13  };
15 void Foo::static_func1()        //  { dg-warning "defined" }
16   {
17   }
19 inline void Foo::static_func2() //  { dg-warning "inline function" }
20  {
21  }
23 void testfoo()
24
25   Foo::static_func1();
26   Foo::static_func2();
29 // { dg-final { scan-assembler-not "__imp__" } }