diff options
Diffstat (limited to 'gcc/testsuite/gcc.dg/visibility-13.c')
-rw-r--r-- | gcc/testsuite/gcc.dg/visibility-13.c | 19 |
1 files changed, 19 insertions, 0 deletions
diff --git a/gcc/testsuite/gcc.dg/visibility-13.c b/gcc/testsuite/gcc.dg/visibility-13.c new file mode 100644 index 000000000..5f7a7c7a0 --- /dev/null +++ b/gcc/testsuite/gcc.dg/visibility-13.c @@ -0,0 +1,19 @@ +/* { dg-require-visibility "" } */ +/* { dg-require-dll "" } */ + +extern void __attribute__((dllimport, visibility("hidden"))) + f1(); /* { dg-error "visibility" } */ +extern void __attribute__((visibility("hidden"), dllimport)) + f2(); /* { dg-error "visibility" } */ +extern void __attribute__((dllexport, visibility("hidden"))) + f3(); /* { dg-error "visibility" } */ +extern void __attribute__((visibility("hidden"), dllexport)) + f4(); /* { dg-error "visibility" } */ +extern void __attribute__((visibility("default"), dllimport)) + f5(); +extern void __attribute__((dllimport, visibility("default"))) + f6(); +extern void __attribute__((visibility("default"), dllexport)) + f7(); +extern void __attribute__((dllexport, visibility("default"))) + f8(); |