diff options
| author | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 18:41:55 +0200 |
|---|---|---|
| committer | Kimplul <kimi.h.kuparinen@gmail.com> | 2023-11-19 18:41:55 +0200 |
| commit | 8f754f8b13e55e4bb92d72f105c5aaaba1754b7d (patch) | |
| tree | b70b813c091691d6645f8cb82295f41f24f3be93 /tests/rvalue.ek | |
| parent | 5304dbcf4df1fc211b5099f4d6eb7f23dfa8c454 (diff) | |
| download | ek-8f754f8b13e55e4bb92d72f105c5aaaba1754b7d.tar.gz ek-8f754f8b13e55e4bb92d72f105c5aaaba1754b7d.zip | |
start working on instruction lowering
Diffstat (limited to 'tests/rvalue.ek')
| -rw-r--r-- | tests/rvalue.ek | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/tests/rvalue.ek b/tests/rvalue.ek new file mode 100644 index 0000000..c55f14b --- /dev/null +++ b/tests/rvalue.ek @@ -0,0 +1,5 @@ +main() +{ + /* should parse, but give an error about lvalue vs rvalue */ + 20 = 20; +} |
