Fix ultraLightClass method argument types erasure

Fix IdeRegression.testImplementingMap test
This commit is contained in:
Igor Yakovlev
2019-09-26 01:23:01 +03:00
parent c5fc55b84c
commit cef6b71897
3 changed files with 5 additions and 5 deletions
@@ -18,5 +18,7 @@ abstract class SmartSet<T> private constructor() : AbstractMutableSet<T>() {
return true
}
/* Should erasure T but UL classes does not support it in this case
override fun contains(element: T): Boolean = true
*/
}