mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-09 04:59:31 -06:00
one more test for cyclic def rules
This commit is contained in:
11
testsuite/compiler/check/cyclic/abs-types/Test3Abs.gf
Normal file
11
testsuite/compiler/check/cyclic/abs-types/Test3Abs.gf
Normal file
@@ -0,0 +1,11 @@
|
||||
abstract Test3Abs = {
|
||||
|
||||
cat A ;
|
||||
|
||||
fun f : A -> A ;
|
||||
def f = g ;
|
||||
|
||||
fun g : A -> A ;
|
||||
def g = f ;
|
||||
|
||||
}
|
||||
1
testsuite/compiler/check/cyclic/abs-types/test3.gfs
Normal file
1
testsuite/compiler/check/cyclic/abs-types/test3.gfs
Normal file
@@ -0,0 +1 @@
|
||||
i -src testsuite/compiler/check/cyclic/abs-types/Test3Abs.gf
|
||||
Reference in New Issue
Block a user