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-06 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0519.cs
blob
d727961395ce2431a773218d485c71e3b7cda3ff
1
// cs0519.cs: `System' clashes with a predefined namespace
2
// Line: 1
3
4
enum
System { A }
5
6
class
X
{
7
static void
Main
()
8
{
9
System s
=
new
System
();
10
}
11
}