19 lines
134 B
C#
19 lines
134 B
C#
|
// Compiler options: -t:library
|
||
|
|
||
|
namespace A
|
||
|
{
|
||
|
public class C
|
||
|
{
|
||
|
public void Foo ()
|
||
|
{
|
||
|
}
|
||
|
}
|
||
|
}
|
||
|
|
||
|
namespace A.B
|
||
|
{
|
||
|
class C
|
||
|
{
|
||
|
}
|
||
|
}
|