12 lines
211 B
Plaintext
12 lines
211 B
Plaintext
// Expect 3 errors
|
|
void func();
|
|
|
|
void a;
|
|
void b = func();
|
|
|
|
/*%%*
|
|
variables of type 'void' are not allowed
|
|
variables of type 'void' are not allowed
|
|
global variable initializer must be a constant expression
|
|
*%%*/
|