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
Remove useless ip += from MINT_JMP, it is assigned later. (#19217)
[mono-project.git]
/
mcs
/
errors
/
cs0138.cs
blob
b0d36314517d3fe52663f3411568c85501d5b6be
1
// CS0138: A `using' directive can only be applied to namespaces but `System.Console' denotes a type. Consider using a `using static' instead
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
}