We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 65a28be commit 616e740Copy full SHA for 616e740
2 files changed
tests/CMakeLists.txt
@@ -144,6 +144,7 @@ set(ethos_test_file_list
144
pairwise-singleton.eo
145
quote-opaque.eo
146
quote-requires.eo
147
+ set-empty-amb.eo
148
)
149
150
if(ENABLE_ORACLES)
tests/set-empty-amb.eo
@@ -0,0 +1,7 @@
1
+
2
+(declare-type Set (Type))
3
+(declare-parameterized-const set.empty ((T Type :implicit)) (Set T))
4
5
+(declare-type Int ())
6
7
+(define f () (as set.empty (Set Int)) :type (Set Int))
0 commit comments