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 #1821 from iainx/replace-getline
[mono-project.git]
/
mcs
/
errors
/
cs0841.cs
blob
ba1f977a53d0c51dc83961473e7e6b77c13303e8
1
// CS0841: A local variable `y' cannot be used before it is declared
2
// Line: 8
3
4
public class
C
5
{
6
public static void
Main
()
7
{
8
const int
x
=
y
;
9
const int
y
=
1
;
10
}
11
}