Skip to content

Instantly share code, notes, and snippets.

@jkbbwr

jkbbwr/Test.java Secret

Created July 27, 2016 21:46
Show Gist options
  • Save jkbbwr/04c18a078bc4261e70450c1b11258d43 to your computer and use it in GitHub Desktop.
Save jkbbwr/04c18a078bc4261e70450c1b11258d43 to your computer and use it in GitHub Desktop.
fun func() {
}
fun main(args: Array<String>) {
Test.test(::func)
//class uk.co.jkbbwr.service.MainKt$main$1
}
public class Test {
public static void test(Object o) {
System.out.println(o.getClass());
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment