mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-16 21:47:04 +00:00
11 lines
182 B
Rust
11 lines
182 B
Rust
//@ run-pass
|
|
//@ aux-build:nested_item.rs
|
|
|
|
|
|
extern crate nested_item;
|
|
|
|
pub fn main() {
|
|
assert_eq!(2, nested_item::foo::<()>());
|
|
assert_eq!(2, nested_item::foo::<isize>());
|
|
}
|