Move all basic completion tests to common folder

This commit is contained in:
Nikolay Krasko
2013-04-11 17:33:24 +04:00
parent 7f8e0e8803
commit 87c9a65667
74 changed files with 256 additions and 246 deletions
@@ -0,0 +1,14 @@
open class Base
open class OtherBase
class Some<T>
fun <TSome : Base, R : Base> Some<TSome>.extensionBase(param: R) = "Test"
fun <TSome : OtherBase, R : OtherBase> Some<TSome>.extensionOtherBase(param: R) = "Test"
fun <TSome> Some<TSome>.extensionExact() = "Test"
fun test() {
Some<Base>().ex<caret>
}
// EXIST: extensionBase, extensionExact
// ABSENT: extensionOtherBase