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
Make StringComparer.Create throw ArgumentNullException (#26570)
[mono-project.git]
/
mcs
/
tests
/
test-214.cs
blob
84352b447f36bd121d1e356cb909b8b5d2dddfa4
1
using
T1
=
N1
.
C1
;
2
3
namespace
N2
4
{
5
class
Test
:
T1
6
{
7
public static int
Main
()
8
{
9
// Compilation-only test.
10
Foo
();
11
return
0
;
12
}
13
}
14
}
15
16
namespace
N1
17
{
18
public class
C1
19
{
20
public static void
Foo
()
21
{ }
22
}
23
}