package net.sf.joafip;
import net.sf.joafip.asm.Type;
public class MainNotStorableClass {
public static void main(String[] args) {
Type type = Type.getType(NotStorableClass.class);
System.out.println(type.getDescriptor());
type = Type.getType(int.class);
System.out.println(type.getDescriptor());
}
}