summaryrefslogtreecommitdiff
path: root/gcc/testsuite/g++.dg/ext/interface4.h
blob: 0971b3722171f4e56fe08fcb26d52a9bd55c845a (plain)
1
2
3
4
5
6
7
8
#pragma interface
namespace N {
        typedef int A;
}
inline void g ( ) {
        static N :: A a = 0;
        a = a;
}