Tests fixed after visibility changing

This commit is contained in:
Svetlana Isakova
2012-03-29 20:47:01 +04:00
parent 167a9c444a
commit 5419b0a3dc
5 changed files with 8 additions and 22 deletions
@@ -2,7 +2,7 @@
// this test checks it does it properly
trait Foo<P> {
fun quux(p: P, q: Int = 17) = 18
fun quux(p: P, q: Int = 17) : Int = 18
}
trait Bar<Q> : Foo<Q>