blob: fc3d7913246eadd960139745de360db5dd55f797 [file] [log] [blame]
inout(int) foo(inout(int) x)
{
x = 5; // cannot modify inout
return 0;
}