mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			23 lines
		
	
	
		
			565 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			23 lines
		
	
	
		
			565 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| #![feature(no_core, auto_traits, lang_items, arbitrary_self_types)]
 | |
| #![no_core]
 | |
| 
 | |
| #[lang = "sized"]
 | |
| trait Sized {}
 | |
| 
 | |
| #[lang = "receiver"]
 | |
| pub trait Receiver {}
 | |
| 
 | |
| pub auto trait Bar {}
 | |
| 
 | |
| /// has span
 | |
| impl Foo {
 | |
|     pub fn baz(&self) {}
 | |
| }
 | |
| 
 | |
| // Testing spans, so all tests below code
 | |
| //@ is "$.index[*][?(@.docs=='has span')].span.begin" "[13, 0]"
 | |
| //@ is "$.index[*][?(@.docs=='has span')].span.end" "[15, 1]"
 | |
| // FIXME: this doesn't work due to https://github.com/freestrings/jsonpath/issues/91
 | |
| // is "$.index[*][?(@.inner.impl.synthetic==true)].span" null
 | |
| pub struct Foo;
 | 
