"Committed_by_peb"

This commit is contained in:
peb
2005-04-11 12:57:45 +00:00
parent 716e7986c5
commit a1546c25e7
81 changed files with 7080 additions and 181 deletions

View File

@@ -0,0 +1,14 @@
concrete TestVars of TestVarsA = open TestVarsR in {
lincat S = { s : XYZ => Str; p : { s : Str; a : AB } };
lin a = { s = table { X _ => variants { "x1" ; "x2" };
Y => variants { "y1" ; "y2" };
_ => variants { "z1" ; "z2" } };
p = variants { { s = "s1" ; a = A } ;
{ s = "s2" ; a = B } };
};
}

View File

@@ -0,0 +1,9 @@
abstract TestVarsA = {
cat S;
fun a : S;
}

View File

@@ -0,0 +1,27 @@
resource TestVarsR = {
param AB = A | B;
param XYZ = X AB | Y | Z AB;
}