16 lines
145 B
C#
16 lines
145 B
C#
|
// Compiler options: -r:test-911-lib.dll
|
||
|
|
||
|
class N
|
||
|
{
|
||
|
public static void Foo ()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
|
||
|
class X
|
||
|
{
|
||
|
public static void Main ()
|
||
|
{
|
||
|
N.Foo ();
|
||
|
}
|
||
|
}
|