]> git.ipfire.org Git - thirdparty/gcc.git/blob - gcc/testsuite/gdc.test/fail_compilation/diag7477.d
d: Import dmd b8384668f, druntime e6caaab9, phobos 5ab9ad256 (v2.098.0-beta.1)
[thirdparty/gcc.git] / gcc / testsuite / gdc.test / fail_compilation / diag7477.d
1 /*
2 TEST_OUTPUT:
3 ---
4 fail_compilation/diag7477.d(13): Error: integral constant must be scalar type, not `Foo`
5 fail_compilation/diag7477.d(20): Error: integral constant must be scalar type, not `string`
6 ---
7 */
8
9 struct Foo { int x; }
10
11 enum Bar : Foo
12 {
13 a,
14 b,
15 c
16 }
17
18 enum Baz : string
19 {
20 a,
21 b,
22 }