Files
kotlin/idea/testData/script/definition/highlighting/customLibrary/script.kts
Pavel V. Talanov 53144def10 AbstractScriptConfigurationTest: rewrite script template setup
Allow simpler setup of common scenarios
Do not require to define DependenciesResolver for every test
Drop redundant template files
2017-09-08 15:04:17 +03:00

9 lines
140 B
Kotlin
Vendored

val c1 = C()
val c2 = C()
doStuff(c1, c2)
doStuff(c1, <error>3</error>)
// DEPENDENCIES: classpath:lib-classes; imports:custom.library.*