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
Merge pull request #3806 from BrzVlad/feature-parallel-gc-final
[mono-project.git]
/
mcs
/
errors
/
cs0246-29.cs
blob
051b956e54fb2674e3a72f1c7dc1f03e2773edc0
1
// CS0246: The type or namespace name `B' could not be found. Are you missing an assembly reference?
2
// Line: 8
3
4
class
X
5
{
6
public static void
Main
()
7
{
8
B b
;
9
}
10
}