11 lines
240 B
Rust
Raw Normal View History

2025-06-27 02:33:44 +01:00
use crate::repl::tests::{TestResult, test_ide_contains};
#[test]
fn parser_recovers() -> TestResult {
test_ide_contains(
"3 + \"bob\"\nlet x = \"fred\"\n",
&["--ide-check 5"],
"\"typename\":\"string\"",
)
}