mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
repl: execute REPL tests ~1.5x to 2x faster
This commit is contained in:
committed by
Alexander Medvednikov
parent
64a9f43405
commit
d92291dd76
5
vlib/compiler/tests/repl/chained_fields/c2.repl
Normal file
5
vlib/compiler/tests/repl/chained_fields/c2.repl
Normal file
@@ -0,0 +1,5 @@
|
||||
struct A { mut: v int } struct B { a A } struct C { mut: b B } struct D { mut: c C }
|
||||
c2 := C{}
|
||||
c2.b = B{} // Error (c2 immutable)
|
||||
===output===
|
||||
`c2` is immutable
|
||||
Reference in New Issue
Block a user