2014-07-25 11:41:09 -05:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
|
|
|
fn outer<T>() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn inner() -> uint {
|
|
|
|
8675309
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-08-08 13:24:44 -05:00
|
|
|
extern "C" fn outer_foreign<T>() {
|
|
|
|
#[allow(dead_code)]
|
|
|
|
fn inner() -> uint {
|
|
|
|
11235813
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
2014-07-25 11:41:09 -05:00
|
|
|
fn main() {
|
|
|
|
outer::<int>();
|
|
|
|
outer::<uint>();
|
2014-08-08 13:24:44 -05:00
|
|
|
outer_foreign::<int>();
|
|
|
|
outer_foreign::<uint>();
|
2014-07-25 11:41:09 -05:00
|
|
|
}
|