Add 'value' modifier to modifier order

Otherwise, there will be unfixable 'non-canonical modifier order'
warning
 #KT-46088
 #KTIJ-5636 Fixed
This commit is contained in:
Ilmir Usmanov
2021-04-15 19:28:36 +02:00
committed by TeamCityServer
parent 7525d9a1ce
commit 7b14975740
8 changed files with 27 additions and 0 deletions
@@ -0,0 +1,4 @@
// "Replace with '@JvmInline value'" "true"
// WITH_RUNTIME
public <caret>inline class IC(val i: Int)
@@ -0,0 +1,5 @@
// "Replace with '@JvmInline value'" "true"
// WITH_RUNTIME
@JvmInline
public value class IC(val i: Int)