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-05-29 Steven Munroe <munroesj@us.ibm.com>
[mcs.git]
/
errors
/
cs0185.cs
blob
62dd9706267d5c2ecaa624ae7cb9da7133c45f4b
1
// cs0185.cs: `int' is not a reference type as required by the lock statement
2
// Line:
3
4
class
X
{
5
static void
Main
()
6
{
7
lock
(
5
) {
8
}
9
}
10
}
11