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
[bcl] Update BCL Linked Size
[mono-project.git]
/
mcs
/
errors
/
cs0105.cs
blob
27c110cd7a9fda9a3c350cf7eb40fc70a8e61180
1
// CS0105: 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
}