]> git.ipfire.org Git - thirdparty/gcc.git/blame - gcc/testsuite/gdc.test/fail_compilation/fail5953a2.d
d: Synchronize testsuite with upstream dmd
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail5953a2.d
CommitLineData
7da827c9
IB
1/*
2TEST_OUTPUT:
3---
4fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
5fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
6fail_compilation/fail5953a2.d(11): Error: expression expected, not `,`
7---
8*/
b4c522fa
IB
9void main()
10{
11 auto a3 = [,,,]; // invalid, but compiles
12}