mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 95ff642797
			
		
	
	
		95ff642797
		
	
	
	
	
		
			
			Done with ```bash sd '//@ pretty-expanded.*\n' '' tests/ui/**/*.rs ``` and ``` sd '//@pretty-expanded.*\n' '' tests/ui/**/*.rs ```
		
			
				
	
	
		
			27 lines
		
	
	
		
			419 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			27 lines
		
	
	
		
			419 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //@ run-pass
 | |
| // Test that we select between traits A and B. To do that, we must
 | |
| // consider the `Sized` bound.
 | |
| 
 | |
| 
 | |
| trait A { //~ WARN trait `A` is never used
 | |
|     fn foo(self);
 | |
| }
 | |
| 
 | |
| trait B {
 | |
|     fn foo(self);
 | |
| }
 | |
| 
 | |
| impl<T: Sized> A for *const T {
 | |
|     fn foo(self) {}
 | |
| }
 | |
| 
 | |
| impl<T> B for *const [T] {
 | |
|     fn foo(self) {}
 | |
| }
 | |
| 
 | |
| fn main() {
 | |
|     let x: [isize; 4] = [1,2,3,4];
 | |
|     let xptr = &x[..] as *const [isize];
 | |
|     xptr.foo();
 | |
| }
 |