a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
28 lines
195 B
C#
28 lines
195 B
C#
// Compiler options: -optimize
|
|
|
|
class C
|
|
{
|
|
public static void Main ()
|
|
{
|
|
return;
|
|
}
|
|
|
|
void Foo ()
|
|
{
|
|
}
|
|
|
|
int Foo2 ()
|
|
{
|
|
return 7;
|
|
}
|
|
|
|
int Foo3 ()
|
|
{
|
|
{
|
|
{
|
|
return 2;
|
|
}
|
|
}
|
|
}
|
|
}
|