OSDN Git Service

PR c++/54325
[pf3gnuchains/gcc-fork.git] / gcc / testsuite / g++.dg / other / pr43116.C
1 /* { dg-do compile } */
2 extern "C" int rpl_open (const char *filename, int flags, ...) __attribute__
3 ((__nonnull__ (1)));
4
5 namespace gnulib
6 {
7     int (*const open) (const char *filename, int flags, ...) __attribute__
8         ((__nonnull__ (1))) = rpl_open;
9 }