integration_tests/graalvm_tests/src/main/java/org/apache/fury/graalvm/CompatibleExample.java [44:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void main(String[] args) {
    System.out.println("CompatibleExample started");
    Example.test(fury);
    System.out.println("CompatibleExample succeed 1/2");
    // Test new created Fury at runtime
    fury = createFury();
    Example.test(fury);
    System.out.println("CompatibleExample succeed");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



integration_tests/graalvm_tests/src/main/java/org/apache/fury/graalvm/ScopedCompatibleExample.java [45:52]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
  public static void main(String[] args) {
    System.out.println("ScopedCompatibleExample started");
    Example.test(fury);
    System.out.println("ScopedCompatibleExample succeed 1/2");
    fury = createFury();
    Example.test(fury);
    System.out.println("ScopedCompatibleExample succeed");
  }
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



