Fork of the Fernflower decompiler
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
fernflower/testData/src/pkg/TestGroovyClass.groovy

13 lines
280 B

package pkg
import java.util.concurrent.Callable
class TestGroovyClass {
static class Nested { }
class Inner { }
final Nested n = new Nested()
final Inner i = new Inner()
final Runnable r = { println("I'm runnable") }
final Callable<String> c = { "I'm callable" }
}