db8b0a6593
Fixed multi-caret selection in kotlin-to-kotlin copy-paste processor Relates to #KT-33939
19 lines
417 B
Kotlin
Vendored
19 lines
417 B
Kotlin
Vendored
// WITH_LIBRARY: copyPaste/imports/KotlinLibrary
|
|
<selection>
|
|
/*
|
|
* Copyright 2010-2020 JetBrains s.r.o. and Kotlin Programming Language contributors.
|
|
* Use of this source code is governed by the Apache 2.0 license that can be found in the license/LICENSE.txt file.
|
|
*/
|
|
package d
|
|
|
|
/*
|
|
* Some comment in front of imports
|
|
*/
|
|
import foo.Bar
|
|
|
|
/**
|
|
* Some kdoc [Bar] for class Foo
|
|
*/
|
|
class Foo(val a: A) {
|
|
}
|
|
</selection> |