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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0246-10.cs
blob
9073ad96bbea7dd4edb38f963921e0bc212f71af
1
// cs0246-10.cs: The type or namespace name `Nonexistant' could not be found. Are you missing a using directive or an assembly reference?
2
// Line: 5
3
4
using
System
;
5
using
Nonexistant
;
6
7
class
X
8
{
9
static void
Main
() {
10
}
11
}
12