dmd/compiler/test/fail_compilation/fail20637.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

13 lines
294 B
D

/*
EXTRA_FILES: imports/fail20637b.d
TEST_OUTPUT:
---
fail_compilation/fail20637.d(13): Error: no property `foo` for type `imports.fail20637b.A`
fail_compilation/imports/fail20637b.d(3): class `A` defined here
---
*/
module fail20637;
import imports.fail20637b;
void main() { A.foo; }