blob: 7c371d1d170eccb9a22195b6bff554e43ba9bdad [file] [log] [blame]
/*
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){}
}