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