summaryrefslogtreecommitdiff
path: root/testsuite/runtime/parser/LiteralsCnc.gf
blob: d91a222c81ebc2d35f27965ea551d6d8b819e7eb (plain)
1
2
3
4
5
6
7
8
9
concrete LiteralsCnc of Literals = {

lincat S = Str ;

lin IsString  x = x.s ++ "is string" ;
lin IsInteger x = x.s ++ "is integer" ;
lin IsFloat   x = x.s ++ "is float" ;

}