Files
linux-packaging-mono/mcs/tests/test-911.cs

16 lines
145 B
C#
Raw Normal View History

// Compiler options: -r:test-911-lib.dll
class N
{
public static void Foo ()
{
}
}
class X
{
public static void Main ()
{
N.Foo ();
}
}