1 parent 2f369ea commit c6ceda3Copy full SHA for c6ceda3
1 file changed
tree-sitter/src/test/java/org/treesitter/GCTest.java
@@ -0,0 +1,11 @@
1
+package org.treesitter;
2
+
3
+import org.junit.jupiter.api.Test;
4
5
+public class GCTest {
6
+ @Test
7
+ void gc(){
8
+ // Force system to gc to test invalid pointers;
9
+ System.gc();
10
+ }
11
+}
0 commit comments