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
gtk+-4.0: Change type of Gdk.Key.* constants to uint
[vala-gnome.git]
/
tests
/
objects
/
bug667668.vala
blob
8f760c7bef44924e1d83e626d2a9f2142d215b2f
1
public abstract class
Foo
<
G
> :
Object
{
2
public abstract
G foo
{
get
;
set
; }
3
}
4
5
public class
Bar
:
Foo
<
string
> {
6
public override
string
foo
{
get
;
set
; }
7
}
8
9
void
main
() {
10
var
bar
=
new
Bar
();
11
bar
.
foo
=
"foo"
;
12
assert
(
bar
.
foo
==
"foo"
);
13
}