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
add monotouch sources file
[mcs.git]
/
errors
/
cs0687.cs
blob
cdeca83b7ad1392a3098881dc27e0432c27f5c1a
1
// CS0687: A namespace alias qualifier `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
}