blob: 19231c28e3469adea209bea0284c45dc86b5848f [file] [log] [blame]
/*
TEST_OUTPUT:
---
fail_compilation/ice16657.d(9): Error: function `ice16657.RefCounted.refCountedPayload` has no `return` statement, but is expected to return a value of type `inout(RefCounted)`
---
*/
struct RefCounted
{
inout(RefCounted) refCountedPayload() inout { }
alias refCountedPayload this;
}
struct Store
{
RefCounted p;
}