Files
kotlin-fork/idea/testData/copyPaste/imports/EntireFile.kt
T
Vladimir Dolzhenko db8b0a6593 Show Review Added Imports on paste action
Fixed multi-caret selection in kotlin-to-kotlin copy-paste processor

Relates to #KT-33939
2020-01-22 17:14:04 +01:00

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>