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
/
asynchronous
/
bug646945.vala
blob
ad17d486b08b3b93f0d36ed1f5d9828a9a127b43
1
class
Foo
:
Object
{
2
public virtual
async
void
method1
() { }
3
}
4
5
interface
Bar
:
Object
{
6
public virtual
async
void
method2
() { }
7
}
8
9
class
Baz
:
Foo
,
Bar
{
10
public override
async
void
method1
() {
11
method1
.
callback
();
12
}
13
14
public
async
void
method2
() {
15
method2
.
callback
();
16
}
17
}
18
19
void
main
() {
20
}