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-10-22 Marek Safar <marek.safar@gmail.com>
[mcs.git]
/
errors
/
cs0432.cs
blob
1ecd5141a2e8e4e2339447f2a240b0beb39e4553
1
// cs0432.cs: Alias `fool' not found
2
// Line: 9
3
4
using
foo
=
System
;
5
6
class
X
{
7
static void
Main
()
8
{
9
fool
::
Console
.
WriteLine
(
"hello"
);
10
}
11
}