2018-05-08 08:10:16 -05:00
|
|
|
// compile-flags:-Zprint-mono-items=lazy
|
2017-10-27 07:32:26 -05:00
|
|
|
|
2018-11-26 20:59:49 -06:00
|
|
|
// N.B., we do not expect *any* monomorphization to be generated here.
|
2017-10-27 07:32:26 -05:00
|
|
|
|
|
|
|
#![deny(dead_code)]
|
|
|
|
#![crate_type = "rlib"]
|
|
|
|
|
|
|
|
#[inline]
|
|
|
|
pub fn foo() -> bool {
|
|
|
|
[1, 2] == [3, 4]
|
|
|
|
}
|