Fix modifier order in generated overriden functions
Fixes #KT-21600
This commit is contained in:
committed by
Alexander Udalov
parent
99be75cbfc
commit
8bc020f31b
@@ -0,0 +1,7 @@
|
||||
interface I {
|
||||
suspend fun foo()
|
||||
}
|
||||
|
||||
class C : I {
|
||||
<caret>
|
||||
}
|
||||
@@ -0,0 +1,9 @@
|
||||
interface I {
|
||||
suspend fun foo()
|
||||
}
|
||||
|
||||
class C : I {
|
||||
override suspend fun foo() {
|
||||
<selection><caret>TODO("not implemented") //To change body of created functions use File | Settings | File Templates.</selection>
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user