• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1// Expect 3 errors
2void func();
3
4void a;
5void b = func();
6
7/*%%*
8variables of type 'void' are not allowed
9variables of type 'void' are not allowed
10global variable initializer must be a constant expression
11*%%*/
12