mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 05:00:16 +03:00
13 lines
231 B
D
13 lines
231 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail19913.d(11): Error: no property `b` for `a` of type `int`
|
|
fail_compilation/fail19913.d(11): Error: mixin `fail19913.S.b!()` is not defined
|
|
---
|
|
*/
|
|
|
|
struct S
|
|
{
|
|
mixin a.b;
|
|
enum { a }
|
|
}
|