]> gerrit.simantics Code Review - simantics/platform.git/blob - compiler/tests/TestTypeDesc.java
Fixed multiple issues causing dangling references to discarded queries
[simantics/platform.git] / 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 }