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
tests: Add more invalid class tests to increase coverage
[vala-gnome.git]
/
tests
/
semantic
/
class-missing-implement-method.test
blob
c5b154a5016205574564e760e6b028bcf21fd56a
1
Invalid Code
2
3
abstract class Bar {
4
public abstract void bar ();
5
}
6
7
class Foo : Bar {
8
}
9
10
void main () {
11
}