From f657c4b51477bfacf434c916d40d01d0ec6b7aef Mon Sep 17 00:00:00 2001 From: Alexander Medvednikov Date: Wed, 1 Apr 2020 18:16:56 +0200 Subject: [PATCH] another vfmt2 fix --- vlib/v/fmt/tests/string_interpolation_literal_keep.vv | 2 -- 1 file changed, 2 deletions(-) diff --git a/vlib/v/fmt/tests/string_interpolation_literal_keep.vv b/vlib/v/fmt/tests/string_interpolation_literal_keep.vv index 2458f82b2d..e61614e19d 100644 --- a/vlib/v/fmt/tests/string_interpolation_literal_keep.vv +++ b/vlib/v/fmt/tests/string_interpolation_literal_keep.vv @@ -8,8 +8,6 @@ fn main() { c := 'a: $a b: $b i: $i' d := 'a: ${a:5s} b: ${b:-5s} i: ${i:20d}' println('a: $a $b xxx') - // QTODO - //eprintln('c: $c') eprintln('c: $c .') println(d) }