Skip to content
Snippets Groups Projects
Commit bcd94bee authored by Pierre Nigron's avatar Pierre Nigron
Browse files

Comment test + Oracle

parent 6c71eee1
No related branches found
No related tags found
No related merge requests found
...@@ -5,11 +5,11 @@ ...@@ -5,11 +5,11 @@
char *b(char* c){ return c; } char *b(char* c){ return c; }
int main(void) { int main(void) {
char a[] = b(""); char a[] = b(""); // cannot be initialized with a function call
char m[] = 1; char m[] = 1; // cannot be initialized with a constant
char p[1] = 0; char p[1] = 0; // even if sized
extern char j[] = {0,1}; extern char j[] = {0,1}; // extern local variable cannot be initialized
char f[]; char f[]; // unsized array must be initialized
static char n[]; static char n[]; // even if static
return 0; return 0;
} }
...@@ -8,7 +8,7 @@ ...@@ -8,7 +8,7 @@
[kernel] init_call_ko.c:10: User Error: [kernel] init_call_ko.c:10: User Error:
Array initializer must be an initializer list or string literal Array initializer must be an initializer list or string literal
[kernel] init_call_ko.c:11: User Error: [kernel] init_call_ko.c:11: User Error:
'extern' variable cannot have an initializer 'extern' local variable cannot have an initializer
[kernel] init_call_ko.c:12: User Error: [kernel] init_call_ko.c:12: User Error:
variable f with array type needs an explicit size or an initializer variable f with array type needs an explicit size or an initializer
[kernel] init_call_ko.c:13: User Error: [kernel] init_call_ko.c:13: User Error:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment