blob: c4e916f75cf74a32c961307bd328394e1961077b [file] [log] [blame]
// 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;
}
}