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
/
cs0138.cs
blob
382a4e670c8bb79378c54e43b984db15432ea145
1
// CS0138: `System.Console' is a type not a namespace. A using namespace directive can only be applied to namespaces
2
// Line: 5
3
4
using
System
;
5
using
System
.
Console
;
6
7
class
A
8
{
9
static void
Main
()
10
{
11
Console
.
WriteLine
(
"Test cs0138"
);
12
}
13
}