mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-30 20:44:34 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			35 lines
		
	
	
		
			513 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			35 lines
		
	
	
		
			513 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| //! Test that a struct and function can have the same name
 | |
| //!
 | |
| //@ run-pass
 | |
| 
 | |
| #![allow(non_snake_case)]
 | |
| trait Product {
 | |
|     fn product(&self) -> isize;
 | |
| }
 | |
| 
 | |
| struct Foo {
 | |
|     x: isize,
 | |
|     y: isize,
 | |
| }
 | |
| 
 | |
| impl Foo {
 | |
|     pub fn sum(&self) -> isize {
 | |
|         self.x + self.y
 | |
|     }
 | |
| }
 | |
| 
 | |
| impl Product for Foo {
 | |
|     fn product(&self) -> isize {
 | |
|         self.x * self.y
 | |
|     }
 | |
| }
 | |
| 
 | |
| fn Foo(x: isize, y: isize) -> Foo {
 | |
|     Foo { x, y }
 | |
| }
 | |
| 
 | |
| pub fn main() {
 | |
|     let foo = Foo(3, 20);
 | |
|     println!("{} {}", foo.sum(), foo.product());
 | |
| }
 | 
