921e5a0eb4
From-SVN: r14840
10 lines
129 B
C
10 lines
129 B
C
// Build don't link:
|
|
// GROUPS passed array-bindings
|
|
char * bob();
|
|
|
|
main()
|
|
{
|
|
char a[1][2];
|
|
a[0] = bob();// ERROR - .*
|
|
}
|