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

15 lines
306 B
D

// EXTRA_FILES: imports/imp18979.d
/*
TEST_OUTPUT:
---
fail_compilation/fail18979.d(14): Error: no property `__ctor` for `Foo()` of type `imports.imp18979.Foo`
fail_compilation/imports/imp18979.d(3): struct `Foo` defined here
----
*/
import imports.imp18979;
void main()
{
auto f = Foo(42);
}