summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/verrors5.d
blob: 424d4f7622dbc8b8ad3d1a16b7c0ba250f91ccbb (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
// REQUIRED_ARGS: -verrors=5

void main()
{
    { T a; }    // 1
    { T a; }    // 2
    { T a; }    // 3
    { T a; }    // 4
    { T a; }    // 5
    { T a; }    // 6
    { T a; }    // 7
    { T a; }    // 8
    { T a; }    // 9
    { T a; }    // 10
    { T a; }    // 11
    { T a; }    // 12
    { T a; }    // 13
    { T a; }    // 14
    { T a; }    // 15
    { T a; }    // 16
    { T a; }    // 17
    { T a; }    // 18
    { T a; }    // 19
    { T a; }    // 20 (default limit)
    { T a; }    // 21
    { T a; }    // 22
    { T a; }    // 23
    { T a; }    // 24
    { T a; }    // 25
}
/*
TEST_OUTPUT:
---
fail_compilation/verrors5.d(5): Error: undefined identifier `T`
fail_compilation/verrors5.d(6): Error: undefined identifier `T`
fail_compilation/verrors5.d(7): Error: undefined identifier `T`
fail_compilation/verrors5.d(8): Error: undefined identifier `T`
fail_compilation/verrors5.d(9): Error: undefined identifier `T`
---
*/