Corrected order of modifier insertion

This commit is contained in:
Valentin Kipyatkov
2015-10-09 21:45:33 +03:00
parent 55cbe185f8
commit cbf4e4a973
3 changed files with 3 additions and 4 deletions
@@ -1,4 +1,4 @@
// "Add 'operator' modifier" "true"
class A {
fun <caret>plus(other: A): A = A()
public fun <caret>plus(other: A): A = A()
}