summaryrefslogtreecommitdiffstats
path: root/src/test/codegen-units/item-collection/unreferenced-inline-function.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/codegen-units/item-collection/unreferenced-inline-function.rs')
-rw-r--r--src/test/codegen-units/item-collection/unreferenced-inline-function.rs11
1 files changed, 11 insertions, 0 deletions
diff --git a/src/test/codegen-units/item-collection/unreferenced-inline-function.rs b/src/test/codegen-units/item-collection/unreferenced-inline-function.rs
new file mode 100644
index 000000000..4d095e4d6
--- /dev/null
+++ b/src/test/codegen-units/item-collection/unreferenced-inline-function.rs
@@ -0,0 +1,11 @@
+// compile-flags:-Zprint-mono-items=lazy
+
+// N.B., we do not expect *any* monomorphization to be generated here.
+
+#![deny(dead_code)]
+#![crate_type = "rlib"]
+
+#[inline]
+pub fn foo() -> bool {
+ [1, 2] == [3, 4]
+}