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
2009-11-20 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0105.cs
blob
11f59b738b2039f7623fa9add8bb0810a3f65785
1
// cs0105.cs: The using directive for `System' appeared previously in this namespace
2
// Line: 6
3
// Compiler options: -warnaserror -warn:3
4
5
using
System
;
6
using
System
;
7
8
public class
X
9
{
10
static int
Main
()
11
{
12
int
a
=
5
;
13
return
a
;
14
}
15
}