mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-10-31 13:04:42 +00:00 
			
		
		
		
	 52b15b4bf9
			
		
	
	
		52b15b4bf9
		
	
	
	
	
		
			
			These are internal features used for a specific purpose, and modules without imports are enough for that purpose.
		
			
				
	
	
		
			13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			13 lines
		
	
	
		
			258 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
| // aux-build:issue-15318.rs
 | |
| // ignore-cross-compile
 | |
| #![no_std]
 | |
| 
 | |
| extern crate issue_15318;
 | |
| 
 | |
| pub use issue_15318::ptr;
 | |
| 
 | |
| // @!has issue_15318_2/fn.bar.html \
 | |
| //          '//*[@href="primitive.pointer.html"]' \
 | |
| //          '*mut T'
 | |
| pub fn bar<T>(ptr: *mut T) {}
 |