mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
17 lines
335 B
D
17 lines
335 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail123.d(11): Error: undefined identifier `type`
|
|
fail_compilation/fail123.d(17): Error: enum `fail123.foo2` base type must not be `void`
|
|
---
|
|
*/
|
|
|
|
// https://issues.dlang.org/show_bug.cgi?id=355
|
|
// ICE from enum : nonexistent type
|
|
enum foo : type
|
|
{
|
|
blah1,
|
|
blah2
|
|
}
|
|
|
|
enum foo2 : void { a, b }
|