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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0576.cs
blob
cd582b9f839510d1d00b4feb9f26598765987961
1
// CS0576: Namespace `global::' contains a definition with same name as alias `S'
2
// Line: 14
3
4
using
S
=
System
;
5
6
public class
S
7
{
8
}
9
10
public class
Test
11
{
12
public static void
Main
()
13
{
14
S s
;
15
}
16
}