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

21 lines
394 B
D

// REQUIRED_ARGS: -de
// EXTRA_FILES: imports/test15897.d
/*
TEST_OUTPUT:
---
fail_compilation/test15897.d(20): Error: no property `create` for `cat` of type `imports.test15897.Cat`
fail_compilation/imports/test15897.d(4): class `Cat` defined here
---
*/
module test15897;
import imports.test15897;
class Animal
{
private void create() {}
}
void foo(Cat cat)
{
cat.create();
}