mirror of
https://github.com/jlengrand/kotlin.git
synced 2026-05-16 08:31:35 +00:00
Allow simpler setup of common scenarios Do not require to define DependenciesResolver for every test Drop redundant template files
9 lines
140 B
Kotlin
Vendored
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.* |