1
0
forked from GitHub/gf-core

additional tests for linearizations

This commit is contained in:
krasimir
2010-01-12 13:18:37 +00:00
parent 2b6eaf6f11
commit c00d3be656
4 changed files with 57 additions and 5 deletions

View File

@@ -1,9 +1,16 @@
abstract Test = {
cat P ;
cat S ;
cat E ;
fun Exist : (E -> P) -> P ;
Even : E -> P ;
fun Exist : (E -> S) -> S ;
Even : E -> S ;
fun a : E ;
f,fa,fb : E -> S ;
fun IsString : String -> S ;
IsInteger : Int -> S ;
IsFloat : Float -> S ;
}