repo.or.cz
/
mono-project.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
[interp] Fall back to old implementation when calling on proxy
[mono-project.git]
/
mcs
/
errors
/
cs0229-6.cs
blob
7f07a51f3821f073aa3123e02e6d238c711d436e
1
// CS0229: Ambiguity between `A.N' and `B.N'
2
// Line: 26
3
4
using static
A
;
5
using static
B
;
6
7
class
A
8
{
9
public class
N
10
{
11
public static void
Foo
()
12
{
13
}
14
}
15
}
16
17
class
B
18
{
19
public static int
N
;
20
}
21
22
class
Test
23
{
24
public static void
Main
()
25
{
26
N
.
Foo
();
27
}
28
}