Create From Usage: Move "Create function"-related tests to separate directory
This commit is contained in:
+9
@@ -0,0 +1,9 @@
|
||||
// "Create function 'minus' from usage" "true"
|
||||
|
||||
class A<T>(val n: T) {
|
||||
fun minus(n: Int): A<T> = throw Exception()
|
||||
}
|
||||
|
||||
fun test() {
|
||||
val a: A<Int> = <caret>-A(1)
|
||||
}
|
||||
Reference in New Issue
Block a user