repo.or.cz
/
vala-gnome.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
Release 0.41.92
[vala-gnome.git]
/
tests
/
parser
/
lock-statement.vala
blob
632a3e673d05aa0a21d0955e762ed05f71a8fd81
1
class
Foo
{
2
int
lockable
;
3
4
public
void
explicit_unlocking
() {
5
lock
(
lockable
);
6
unlock
(
lockable
);
7
}
8
9
public
void
implicit_unlocking
() {
10
lock
(
lockable
) {
11
}
12
}
13
}
14
15
void
main
() {
16
}