blob: c5eb1d51947bb4b132e8126ea583eca0f9b587c4 [file] [log] [blame]
// Simple compiler test.
public class Case
{
public static int foo (int i, support.Case x)
{
switch (i)
{
case x.A:
return 1;
default:
return 0;
}
}
}