summaryrefslogtreecommitdiffstats
path: root/src/test/ui/consts/too_generic_eval_ice.rs
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/ui/consts/too_generic_eval_ice.rs')
-rw-r--r--src/test/ui/consts/too_generic_eval_ice.rs14
1 files changed, 14 insertions, 0 deletions
diff --git a/src/test/ui/consts/too_generic_eval_ice.rs b/src/test/ui/consts/too_generic_eval_ice.rs
new file mode 100644
index 000000000..af494e373
--- /dev/null
+++ b/src/test/ui/consts/too_generic_eval_ice.rs
@@ -0,0 +1,14 @@
+pub struct Foo<A, B>(A, B);
+
+impl<A, B> Foo<A, B> {
+ const HOST_SIZE: usize = std::mem::size_of::<B>();
+
+ pub fn crash() -> bool {
+ [5; Self::HOST_SIZE] == [6; 0]
+ //~^ ERROR constant expression depends on a generic parameter
+ //~| ERROR constant expression depends on a generic parameter
+ //~| ERROR can't compare `[{integer}; _]` with `[{integer}; 0]`
+ }
+}
+
+fn main() {}