No empty .Rs/.Re
[netbsd-mini2440.git] / gnu / dist / gcc4 / gcc / testsuite / g++.dg / ext / builtin2.C
blobc741c0ba98f8e46f0b1fc6b1fea044dcc4ecf85b
1 // PR c++/18514
2 // Test whether alternate 'asm' name is applied correctly to
3 // builtin imported into namespace std.
5 // { dg-do compile }
6 // { dg-options "" }
7 // { dg-final { scan-assembler "fancy_printf" } }
9 extern "C" int printf(char*, ...) __asm("_fancy_printf");
11 namespace std { using ::printf; }
13 namespace std { void foo() { printf("abc"); } }