mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
13 lines
190 B
D
13 lines
190 B
D
/* TEST_OUTPUT:
|
|
---
|
|
fail_compilation/mixinprop.d(12): Error: no property `x` for `mixin Foo!() F;` of type `void`
|
|
---
|
|
*/
|
|
|
|
mixin template Foo() { }
|
|
|
|
void main()
|
|
{
|
|
mixin Foo F;
|
|
F.x;
|
|
}
|