blob: c9f414feaa26714f8737e0858ba05e692a5a1c2c [file] [log] [blame]
// https://issues.dlang.org/show_bug.cgi?id=6999: inout in front of return type
struct A
{
inout:
inout(int) foo()
{
return 0;
}
}
struct B
{
inout
{
inout(int) foo()
{
return 0;
}
}
}
struct C
{
inout inout(int) foo()
{
return 0;
}
}