We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9f8fabb commit 0423601Copy full SHA for 0423601
cli-impl/src/test/java/org/aya/test/cli/ReplCompilerTest.java
@@ -54,6 +54,11 @@ public class ReplCompilerTest {
54
| suc (_ : Nat)
55
""".trim(), Nat.core().easyToString());
56
57
+ var refl = assertInstanceOf(CompiledVar.class, findContext("Path::refl"));
58
+ assertNotNull(refl);
59
+ assertEquals("def refl {A : Type 0} {a : A} : a = a => /* compiled code */",
60
+ refl.core().easyToString());
61
+
62
// Don't be too harsh on the test lib structure, maybe we will change it
63
var rootHints = compiler.getContext().giveMeHint(ImmutableSeq.empty());
64
assertTrue(rootHints.contains("Nat"));
0 commit comments