mirror of
https://github.com/autc04/Retro68.git
synced 2024-12-04 16:50:57 +00:00
16 lines
213 B
Java
16 lines
213 B
Java
class Foo
|
|
{
|
|
Class bar()
|
|
{
|
|
return gnu.classpath.VMStackWalker.getCallingClass();
|
|
}
|
|
}
|
|
|
|
public class WalkerTest
|
|
{
|
|
public static void main(String[] argv)
|
|
{
|
|
System.out.println(new Foo().bar());
|
|
}
|
|
}
|