mirror of
https://github.com/rust-lang/rust.git
synced 2024-11-01 15:01:51 +00:00
12 lines
182 B
Rust
12 lines
182 B
Rust
//@ run-pass
|
|
//@ aux-build:issue-9188.rs
|
|
|
|
|
|
extern crate issue_9188;
|
|
|
|
pub fn main() {
|
|
let a = issue_9188::bar();
|
|
let b = issue_9188::foo::<isize>();
|
|
assert_eq!(*a, *b);
|
|
}
|