bad_path/
bad_path.rs

1//! Internal
2#![allow(unused)]
3use subscript_compiler;
4
5fn main() {
6    let source = include_str!("./other/bad-path.txt");
7    let parsed = subscript_compiler::frontend::pass::pp_normalize::run_compiler_frontend(source);
8    for node in parsed {
9        println!("{:#?}", node);
10    }
11}