From bf41d56597349a7047f2034e3e3e00d4502220cc Mon Sep 17 00:00:00 2001 From: Daniel Mensinger Date: Sat, 24 Jul 2021 14:14:32 +0200 Subject: ast: Add dummy "support" for fstrings in the ast package --- test cases/unit/57 introspection/meson.build | 2 ++ 1 file changed, 2 insertions(+) (limited to 'test cases/unit') diff --git a/test cases/unit/57 introspection/meson.build b/test cases/unit/57 introspection/meson.build index 2f666f3..568d5cc 100644 --- a/test cases/unit/57 introspection/meson.build +++ b/test cases/unit/57 introspection/meson.build @@ -27,6 +27,8 @@ var1 = '1' var2 = 2.to_string() var3 = 'test3' +var4 = f'test @var1@ string' # TODO: Actually implement fstrings + cus1 = custom_target('custom target test 1', output: 'file2', input: 'cp.py', command: [find_program('cp.py'), '@INPUT@', '@OUTPUT@']) cus2 = custom_target('custom target test 2', output: 'file3', input: cus1, -- cgit v1.1