dmd/compiler/test/fail_compilation/test17380spec.d
2022-09-06 15:03:04 +09:00

23 lines
673 B
D

/* REQUIRED_ARGS: -verrors=spec
TEST_OUTPUT:
---
(spec:1) fail_compilation/test17380spec.d(14): Error: cannot resolve identifier `ThisTypeDoesNotExistAndCrashesTheCompiler`
(spec:1) fail_compilation/test17380spec.d(14): Error: no property `ThisTypeDoesNotExistAndCrashesTheCompiler` for `this.opCast()` of type `test17380spec.Uint128`
fail_compilation/test17380spec.d(14): Error: undefined identifier `ThisTypeDoesNotExistAndCrashesTheCompiler`
---
*/
struct Int128
{
Uint128 opCast()
{
return ThisTypeDoesNotExistAndCrashesTheCompiler;
}
alias opCast this;
}
struct Uint128
{
Int128 opCast() { return Int128.init; }
alias opCast this;
}