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
Make csproj target work again
[mcs.git]
/
errors
/
cs0234-2.cs
blob
181131acfb70a87c61f3d8b545455fb5984b271f
1
// cs0234-2.cs: The type or namespace name `Enum' does not exist in the namespace `A.B.System'. Are you missing an assembly reference?
2
// Line: 8
3
4
using
System
;
5
namespace
A
.
B
.
System
{
6
public class
Test
{
7
public static void
Main
() {
8
Console
.
WriteLine
(
typeof
(
System
.
Enum
));
9
}
10
}
11
}