diff options
author | Adam Chlipala <adam@chlipala.net> | 2011-12-03 15:59:21 -0500 |
---|---|---|
committer | Adam Chlipala <adam@chlipala.net> | 2011-12-03 15:59:21 -0500 |
commit | 3dc530c8da0e053e92b39144488045e88f1bcc18 (patch) | |
tree | f6aeb73b5d2ae01ccd7b732ed8c991fc269665e9 /tests/cantSql.ur | |
parent | ded4989032717188e6102248a34fe39ccbc4e9d1 (diff) |
Better error messages about non-SQL-izability of types
Diffstat (limited to 'tests/cantSql.ur')
-rw-r--r-- | tests/cantSql.ur | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tests/cantSql.ur b/tests/cantSql.ur new file mode 100644 index 00000000..026fcaa4 --- /dev/null +++ b/tests/cantSql.ur @@ -0,0 +1,3 @@ +datatype foo = Bar of int + +table bad : { A : foo, B : { X : float } } |