Returns a compiler error if any non ASCII characters are found. Add trybuild test for invalid path characters.
		
			
				
	
	
		
			7 lines
		
	
	
		
			158 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			7 lines
		
	
	
		
			158 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #[test]
 | |
| fn ui() {
 | |
|     let t = trybuild::TestCases::new();
 | |
|     t.pass("tests/ui/01-api-sanity-check.rs");
 | |
|     t.compile_fail("tests/ui/02-invalid-path.rs");
 | |
| }
 |