// Copyright 2012-2015 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 or the MIT license // , at your // option. This file may not be copied, modified, or distributed // except according to those terms. // ignore-tidy-linelength // compile-flags:-Zprint-mono-items=eager #![deny(dead_code)] #![feature(start)] fn take_fn_once(f: F, x: T1, y: T2) { (f)(x, y) } fn function(_: T1, _: T2) {} fn take_fn_pointer(f: fn(T1, T2), x: T1, y: T2) { (f)(x, y) } //~ MONO_ITEM fn function_as_argument::start[0] #[start] fn start(_: isize, _: *const *const u8) -> isize { //~ MONO_ITEM fn function_as_argument::take_fn_once[0] //~ MONO_ITEM fn function_as_argument::function[0] //~ MONO_ITEM fn core::ops[0]::function[0]::FnOnce[0]::call_once[0] take_fn_once(function, 0u32, "abc"); //~ MONO_ITEM fn function_as_argument::take_fn_once[0] //~ MONO_ITEM fn function_as_argument::function[0] //~ MONO_ITEM fn core::ops[0]::function[0]::FnOnce[0]::call_once[0] take_fn_once(function, 'c', 0f64); //~ MONO_ITEM fn function_as_argument::take_fn_pointer[0] //~ MONO_ITEM fn function_as_argument::function[0] take_fn_pointer(function, 0i32, ()); //~ MONO_ITEM fn function_as_argument::take_fn_pointer[0] //~ MONO_ITEM fn function_as_argument::function[0] take_fn_pointer(function, 0f32, 0i64); 0 }