repo.or.cz
/
vala-lang.git
/
blob
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
log
|
graphiclog1
|
graphiclog2
|
commit
|
commitdiff
|
tree
|
refs
|
edit
|
fork
blame
|
history
|
raw
|
HEAD
girparser: Fix setting ownership for parameters.
[vala-lang.git]
/
tests
/
asynchronous
/
bug595735.vala
blob
c88f7e345ddbf39f8ea0b59e747adb98f7830706
1
public abstract class
Foo
{
2
public abstract
async
void
do_foo
();
3
}
4
5
public class
Bar
:
Foo
{
6
public override
async
void
do_foo
() {
7
}
8
}
9
10
void
main
() {
11
}