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
2010-04-01 Jb Evain <jbevain@novell.com>
[mcs.git]
/
errors
/
cs0103.cs
blob
3aadeaaf5d665cc8d40725cfc4db0a16fc656417
1
// CS0103: The name `count' does not exist in the current context
2
// Line: 6
3
4
class
ClassMain
{
5
public static void
Main
() {
6
count
++;
7
}
8
}
9