mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			16 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
			
		
		
	
	
			16 lines
		
	
	
		
			433 B
		
	
	
	
		
			Plaintext
		
	
	
	
	
	
| error[E0404]: expected trait, found type alias `Bar`
 | |
|   --> $DIR/two_files.rs:5:6
 | |
|    |
 | |
| LL | impl Bar for Baz { }
 | |
|    |      ^^^ type aliases cannot be used as traits
 | |
|    |
 | |
| help: you might have meant to use `#![feature(trait_alias)]` instead of a `type` alias
 | |
|   --> $DIR/two_files_data.rs:5:1
 | |
|    |
 | |
| LL | trait Bar = dyn Foo;
 | |
|    |
 | |
| 
 | |
| error: aborting due to previous error
 | |
| 
 | |
| For more information about this error, try `rustc --explain E0404`.
 | 
