blob: 5d908f7cbf3f582d533f7506929815685774ebb8 [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/diag13528.d(13): Error: value of `this` is not known at compile time
fail_compilation/diag13528.d(13): while evaluating `pragma(msg, __traits(getMember, A, "foo"))`
---
*/
mixin template MyTemplate()
{
void foo()
{
pragma(msg, __traits(getMember, typeof(this), "foo"));
}
}
class A
{
mixin MyTemplate;
}
void main()
{
auto a = new A();
}