Skip to content
Snippets Groups Projects
Commit 6ffb2a54 authored by Michael Aaron Murphy's avatar Michael Aaron Murphy
Browse files

:heavy_check_mark: Add integration test for map reassignment

parent b496b9a2
No related branches found
No related tags found
1 merge request!890Make map value reassignment actually work
......@@ -17,13 +17,12 @@ endif
ifeq (1,$(REDOX))
undefine ARGSV
ARGS += --target x86_64-unknown-redox
PREARGS += +nightly
endif
.PHONY: all clean distclean install uninstall
all: version extract .cargo/config
cargo $(PREARGS) build $(ARGS) $(ARGSV)
cargo build $(ARGS) $(ARGSV)
clean:
cargo clean
......
......@@ -23,3 +23,8 @@ echo @map[key3]
let map:bmap[float] = [ichi=1.0 ni=2.0 san=3.0]
echo @map
let map[ichi] = foo
echo @map
let map[ni] = bar
echo @map
......@@ -12,3 +12,5 @@ one
two
three
ichi 1.0 ni 2.0 san 3.0
ichi foo ni 2.0 san 3.0
ichi foo ni bar san 3.0
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment