mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
238 B
D
13 lines
238 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail4269b.d(11): Error: undefined identifier `B`
|
|
fail_compilation/fail4269b.d(12): Error: undefined identifier `B`
|
|
---
|
|
*/
|
|
enum bool WWW = is(typeof(A.x));
|
|
|
|
struct A {
|
|
B blah;
|
|
void foo(B b){}
|
|
}
|