rust/tests/ui/static/nested_item_main.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

11 lines
180 B
Rust
Raw Normal View History

// 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>());
}