dmd/compiler/test/fail_compilation/fail7861.d
Nick Treleaven 56b14c11ff
Show type location for 'no property' error (#15586)
* Show type location for 'no property' error

* Remove local path from test output
2023-09-08 16:44:42 +03:00

18 lines
276 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail7861.d(18): Error: no property `nonexistent` for type `test.B`
fail_compilation/fail7861.d(14): struct `B` defined here
---
*/
module test;
mixin template A() {
import test;
}
struct B {
mixin A!();
}
enum C = B.nonexistent;