]> gerrit.simantics Code Review - simantics/platform.git/blob - tests/org.simantics.scl.compiler.tests/src/org/simantics/scl/compiler/tests/TestTypeDesc.java
(refs #7250) Merging master, minor CHR bugfixes
[simantics/platform.git] / tests / org.simantics.scl.compiler.tests / src / 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 }