mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
160 B
D
13 lines
160 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/ice12362.d(12): Error: initializer must be an expression, not `foo`
|
|
---
|
|
*/
|
|
|
|
enum foo;
|
|
|
|
void main()
|
|
{
|
|
enum bar = foo;
|
|
}
|