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
markupreader: Add get_attributes() method returning a copy of attributes.
[vala-lang.git]
/
tests
/
objects
/
bug613486.vala
blob
ad08b53a40791934848ceda01f05810edd5e5a72
1
class
Foo
<
T
> {
2
public
void
do_foo
(
T t
) {
3
}
4
}
5
6
class
Bar
:
Foo
<
int
> {
7
}
8
9
void
main
() {
10
var
b
=
new
Bar
();
11
b
.
do_foo
(
42
);
12
}