summaryrefslogtreecommitdiffstats
path: root/tests/incremental/issue-108481-feed-eval-always.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/incremental/issue-108481-feed-eval-always.rs')
-rw-r--r--tests/incremental/issue-108481-feed-eval-always.rs16
1 files changed, 16 insertions, 0 deletions
diff --git a/tests/incremental/issue-108481-feed-eval-always.rs b/tests/incremental/issue-108481-feed-eval-always.rs
new file mode 100644
index 000000000..8f346a720
--- /dev/null
+++ b/tests/incremental/issue-108481-feed-eval-always.rs
@@ -0,0 +1,16 @@
+// revisions: cpass1 cpass2
+
+#![crate_type = "rlib"]
+
+use std::fmt::Debug;
+
+// MCVE kindly provided by Nilstrieb at
+// https://github.com/rust-lang/rust/issues/108481#issuecomment-1493080185
+
+#[derive(Debug)]
+pub struct ConstGeneric<const CHUNK_SIZE: usize> {
+ _p: [(); CHUNK_SIZE],
+}
+
+#[cfg(cpass1)]
+impl<const CHUNK_SIZE: usize> ConstGeneric<CHUNK_SIZE> {}