blob: 3e908b6c8cc8bc8a83afdc7df32d61fd8d03f63b [file] [log] [blame]
// PROBLEM: JUnit test should return Unit
// FIX: Add explicit Unit return type
// DISABLE-ERRORS
package org.junit
annotation class Test
class A {
@Test fun foo<caret>(): Unit = 1
}