diff --git a/gcc/testsuite/ChangeLog b/gcc/testsuite/ChangeLog index ea1cad512019..2c85d5ce4aee 100644 --- a/gcc/testsuite/ChangeLog +++ b/gcc/testsuite/ChangeLog @@ -1,3 +1,8 @@ +2011-09-28 Paolo Carlini + + PR c++/40145 + * g++.dg/ext/visibility/warn5.C: New. + 2011-09-28 Paolo Carlini PR c++/45278 diff --git a/gcc/testsuite/g++.dg/ext/visibility/warn5.C b/gcc/testsuite/g++.dg/ext/visibility/warn5.C new file mode 100644 index 000000000000..63538e5ada7b --- /dev/null +++ b/gcc/testsuite/g++.dg/ext/visibility/warn5.C @@ -0,0 +1,11 @@ +// PR c++/40145 +// { dg-do compile } +// { dg-require-visibility "" } +// { dg-options "-fvisibility=hidden" } + +struct EditorInternalCommand { }; + +static void createCommandMap() +{ + struct CommandEntry { EditorInternalCommand command; }; +}