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
/
bug593260.vala
blob
6c1e65886f8606fdbc3c720c77e4b3aa595f174b
1
class
Foo
{
2
public
void
do_foo
<
T
> () {
3
assert
(
this is Foo
);
4
}
5
}
6
7
void
main
() {
8
var
foo
=
new
Foo
();
9
foo
.
do_foo
<
int
> ();
10
}