repo.or.cz
/
mcs.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
add comment
[mcs.git]
/
tests
/
test-262.cs
blob
9fba86f55777e57318f8504de483fca35cf2e0d6
1
namespace
n1
{
2
class
Attribute
{}
3
}
4
5
namespace
n3
{
6
using
n1
;
7
using
System
;
8
class
A
{
9
void
Attribute
() {
10
}
11
void
X
()
12
{
13
Attribute
();
14
}
15
static void
Main
() {
16
new
A
().
X
();
17
}
18
}
19
}