]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/fail97.d
33d0c5fb924ed8e68cb2d316ec4b678d299e9129
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / fail97.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/fail97.d(11): Error: pragma lib pragma is missing closing `;`
5 ---
6 */
7
8 // 151
9
10 import std.stdio;
11 pragma(lib,"ws2_32.lib")//;
12 class bla{}
13 void main(){}