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
manual: Update from wiki.gnome.org
[vala-gnome.git]
/
tests
/
chainup
/
class-object.vala
blob
1d6b0d7773f50a327a72564b0c833dba89f830e6
1
public class
Foo
:
Object
{
2
public
int
i
;
3
public
Foo
() {
4
Object
();
5
i
=
1
;
6
}
7
}
8
9
void
main
() {
10
var
foo
=
new
Foo
();
11
assert
(
foo
.
i
==
1
);
12
}