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

24 lines
507 B
D

/*
TEST_OUTPUT:
---
fail_compilation/fail18892.d(22): Error: no property `foo` for `a` of type `fail18892.MT`
fail_compilation/fail18892.d(13): struct `MT` defined here
fail_compilation/fail18892.d(23): Error: no property `foo` for `MT` of type `fail18892.MT`
fail_compilation/fail18892.d(13): struct `MT` defined here
---
*/
// https://issues.dlang.org/show_bug.cgi?id=18892
struct MT
{
int _payload;
alias _payload this;
}
void main()
{
MT a;
a.foo = 3;
MT.foo = 3;
}