mirror of
https://github.com/GrammaticalFramework/gf-core.git
synced 2026-04-21 02:39:31 -06:00
split the testsuite to different directories for compiler, runtime and libraries
This commit is contained in:
17
testsuite/runtime/paraphrase/lambda.gf
Normal file
17
testsuite/runtime/paraphrase/lambda.gf
Normal file
@@ -0,0 +1,17 @@
|
||||
abstract lambda = {
|
||||
|
||||
fun f1 : Int -> Int ;
|
||||
def f1 = (\x -> x) ;
|
||||
|
||||
fun f2 : Int ;
|
||||
def f2 = f1 1 ;
|
||||
|
||||
cat D ;
|
||||
data D1 : D ;
|
||||
D2 : D ;
|
||||
|
||||
fun d : D -> Int -> Int ;
|
||||
def d D1 = \x -> x ;
|
||||
d D2 = \x -> 2 ;
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user