1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

scanner: prevent resolving to nested interpolation (fix #16240) (#16259)

This commit is contained in:
shove
2022-10-31 16:47:32 +08:00
committed by GitHub
parent 4a7a4b9ec5
commit c3e209a634
4 changed files with 25 additions and 2 deletions

View File

@ -47,6 +47,7 @@ const verify_known_failing_exceptions = [
'vlib/builtin/int_test.v' /* special number formatting that should be tested */,
// TODOs and unfixed vfmt bugs
'vlib/v/gen/js/tests/js.v', /* local `hello` fn, gets replaced with module `hello` aliased as `hl` */
'vlib/v/tests/inout/string_interpolation_inner_expr_cbr.vv', /* for new string interpolation, prevent resolving to nested interpolation */
'vlib/v/tests/string_new_interpolation_test.v', /* new string interpolation */
]