diff options
| author | Alasdair Armstrong | 2019-01-22 18:35:50 +0000 |
|---|---|---|
| committer | Alasdair Armstrong | 2019-01-22 18:35:50 +0000 |
| commit | 93ac9f1762771d601c2b9eed9014ff471093358b (patch) | |
| tree | 968955c944b9d00f0bf6bb1b00785f714c6d3b6e /test/c/nonexistent_pragma.sail | |
| parent | 8258b81bf1485e3133fb4351413ed1f554717f43 (diff) | |
Add some more test cases
Diffstat (limited to 'test/c/nonexistent_pragma.sail')
| -rw-r--r-- | test/c/nonexistent_pragma.sail | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/test/c/nonexistent_pragma.sail b/test/c/nonexistent_pragma.sail new file mode 100644 index 00000000..da4b99f7 --- /dev/null +++ b/test/c/nonexistent_pragma.sail @@ -0,0 +1,12 @@ +default Order dec + +$include <prelude.sail> + +$not_a_valid_pragma test + +val "print_endline" : string -> unit + +function main((): unit) -> unit = { + print_endline("test") +} + |
