Moved @NoInfer, @Exact to internal package

This commit is contained in:
Svetlana Isakova
2015-10-15 21:32:58 +03:00
parent b401d46ae4
commit 566e27788f
5 changed files with 10 additions and 9 deletions
@@ -1,7 +1,7 @@
//!DIAGNOSTICS: -UNUSED_VARIABLE
@Suppress("INVISIBLE_MEMBER", "INVISIBLE_REFERENCE")
fun <T, U: T> List<@Exact T>.firstTyped(): U = throw Exception()
fun <T, U: T> List<@kotlin.internal.Exact T>.firstTyped(): U = throw Exception()
fun test1(l: List<Number>) {