summaryrefslogtreecommitdiff
path: root/gcc/testsuite/gdc.test/fail_compilation/fail62.d
blob: 6e939dbf91ed18042a377104bcd5d43f73f9d3a1 (plain)
1
2
3
4
5
6
7
8
9
10
11
/*
TEST_OUTPUT:
---
fail_compilation/fail62.d(11): Error: version `Foo` defined after use
---
*/

version (Foo)
    int x;

version = Foo;