diff options
Diffstat (limited to 'test/parse/expr/getlocal-index-mixed-named-unnamed.txt')
-rw-r--r-- | test/parse/expr/getlocal-index-mixed-named-unnamed.txt | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/test/parse/expr/getlocal-index-mixed-named-unnamed.txt b/test/parse/expr/getlocal-index-mixed-named-unnamed.txt new file mode 100644 index 00000000..da6fd4b4 --- /dev/null +++ b/test/parse/expr/getlocal-index-mixed-named-unnamed.txt @@ -0,0 +1,11 @@ +(module + (func (param i32) (param $n f32) + (local i32 i64) + (local $m f64) + (get_local 0) + (get_local 1) + (get_local $n) ;; 1 + (get_local 2) + (get_local 3) + (get_local $m) ;; 4 + (get_local 4))) |