blob: ab95e81d5b7ef3fdf5ea210176c8c255bf482851 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice12497.d(15): Error: string expected for argument to mixin, not (foo()) of type void
fail_compilation/ice12497.d(17): Error: string expected for argument to mixin, not (foo()) of type void
---
*/
void foo() {}
void main()
{
struct S
{
mixin(foo()); // MixinDeclaration
}
mixin(foo()); // MixinStatement
}