mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-04 06:56:14 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			13 lines
		
	
	
		
			326 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			326 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
// compile-flags:--test --error-format=short
 | 
						|
// normalize-stdout-test: "tests/rustdoc-ui" -> "$$DIR"
 | 
						|
// normalize-stdout-test "finished in \d+\.\d+s" -> "finished in $$TIME"
 | 
						|
// failure-status: 101
 | 
						|
 | 
						|
/// ```rust
 | 
						|
/// foo();
 | 
						|
/// ```
 | 
						|
//~^^ ERROR cannot find function `foo` in this scope
 | 
						|
fn foo() {
 | 
						|
    println!("Hello, world!");
 | 
						|
}
 |