1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
use super::*; // Parser.test.cpp: parse_interpolated_string_with_lookahead_involved #[test] fn parse_interpolated_string_with_lookahead_involved() { parse_ok( r#" local x = `{ {y} }` "#, ); } // Parser.test.cpp: parse_interpolated_string_with_lookahead_involved2 #[test] fn parse_interpolated_string_with_lookahead_involved2() { parse_ok( r#" local x = `{ { y{} } }` "#, ); }