2018-11-07 Richard Biener <rguenther@suse.de>
[official-gcc.git] / gcc / testsuite / g++.dg / other / void1.C
blob3f6b1dbfe8ed8bf7a11cb8c7db4c7815f9c77dd3
1 // PR c++/9278
2 // { dg-do compile }
4 typedef void VOID;
6 int foo(void);
7 int bar(VOID);
9 template<int> int foo(void);
10 template<int> int bar(VOID);
12 struct A
14   int foo(void);
15   int bar(VOID);