mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 21:16:44 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			12 lines
		
	
	
		
			316 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			12 lines
		
	
	
		
			316 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // In this test baz isn't resolved when called as foo.baz even though
 | |
| // it's called from inside foo. This is somewhat surprising and may
 | |
| // want to change eventually.
 | |
| 
 | |
| mod foo {
 | |
|     pub fn bar() { foo::baz(); } //~ ERROR failed to resolve: use of undeclared crate or module `foo`
 | |
| 
 | |
|     fn baz() { }
 | |
| }
 | |
| 
 | |
| fn main() { }
 | 
