a575963da9
Former-commit-id: da6be194a6b1221998fc28233f2503bd61dd9d14
19 lines
210 B
C#
19 lines
210 B
C#
namespace n1 {
|
|
class Attribute {}
|
|
}
|
|
|
|
namespace n3 {
|
|
using n1;
|
|
using System;
|
|
class A {
|
|
void Attribute () {
|
|
}
|
|
void X ()
|
|
{
|
|
Attribute ();
|
|
}
|
|
public static void Main () {
|
|
new A ().X ();
|
|
}
|
|
}
|
|
} |