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-06-05 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0841-3.cs
blob
2d0b97f2846f6987488f6260f9c59f2533f2d5e4
1
// CS0841: A local variable `y' cannot be used before it is declared
2
// Line: 8
3
4
class
X
5
{
6
static void
y
()
{ }
7
static void
Main
() {
8
y
();
9
int
y
=
5
;
10
}
11
}