Commit d8729054 by Martin v. Löwis

New test case.

From-SVN: r33401
parent f2760b27
// Build don't link:
int i = 4;
struct S{
char c[i]; // ERROR - size not constant
int h;
int foo(){
return h;
}
};
int main()
{
S x;
int i = x.foo();
}
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment