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
2007-03-19 Chris Toshok <toshok@ximian.com>
[mono-project.git]
/
mcs
/
errors
/
cs0687.cs
blob
b67417aaaa653d40a28ba44c04843f1253c6a912
1
// cs0687.cs: The expression `foo::WriteLine' did not resolve to a namespace or a type
2
// Line: 9
3
4
using
foo
=
System
.
Console
;
5
6
class
X
{
7
static void
Main
()
8
{
9
foo
::
WriteLine
(
"hello"
);
10
}
11
}