]> gerrit.simantics Code Review - simantics/platform.git/blob - bundles/org.simantics.scl.compiler/tests/org/simantics/scl/compiler/tests/TestTypeDesc.java
Re-enabled Acorn transaction cancellation support for testing
[simantics/platform.git] / bundles / org.simantics.scl.compiler / tests / org / simantics / scl / compiler / tests / TestTypeDesc.java
1 package org.simantics.scl.compiler.tests;
2
3 import org.cojen.classfile.TypeDesc;
4
5 public class TestTypeDesc {
6     public static void main(String[] args) {
7         System.out.println(TypeDesc.forClass(String.class).getFullName());
8         System.out.println(TypeDesc.forClass(String.class).getDescriptor());
9         System.out.println(TypeDesc.forClass(String.class).getRootName());
10
11     }
12 }