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