summaryrefslogtreecommitdiffstats
path: root/tests/ui/const-generics/issues/issue-73260.stderr
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/const-generics/issues/issue-73260.stderr')
-rw-r--r--tests/ui/const-generics/issues/issue-73260.stderr37
1 files changed, 37 insertions, 0 deletions
diff --git a/tests/ui/const-generics/issues/issue-73260.stderr b/tests/ui/const-generics/issues/issue-73260.stderr
new file mode 100644
index 000000000..7670032e5
--- /dev/null
+++ b/tests/ui/const-generics/issues/issue-73260.stderr
@@ -0,0 +1,37 @@
+error[E0308]: mismatched types
+ --> $DIR/issue-73260.rs:16:12
+ |
+LL | let x: Arr<{usize::MAX}> = Arr {};
+ | ^^^^^^^^^^^^^^^^^ expected `false`, found `true`
+ |
+ = note: expected constant `false`
+ found constant `true`
+note: required by a bound in `Arr`
+ --> $DIR/issue-73260.rs:6:37
+ |
+LL | struct Arr<const N: usize>
+ | --- required by a bound in this
+LL | where
+LL | Assert::<{N < usize::MAX / 2}>: IsTrue,
+ | ^^^^^^ required by this bound in `Arr`
+
+error[E0308]: mismatched types
+ --> $DIR/issue-73260.rs:16:32
+ |
+LL | let x: Arr<{usize::MAX}> = Arr {};
+ | ^^^ expected `false`, found `true`
+ |
+ = note: expected constant `false`
+ found constant `true`
+note: required by a bound in `Arr`
+ --> $DIR/issue-73260.rs:6:37
+ |
+LL | struct Arr<const N: usize>
+ | --- required by a bound in this
+LL | where
+LL | Assert::<{N < usize::MAX / 2}>: IsTrue,
+ | ^^^^^^ required by this bound in `Arr`
+
+error: aborting due to 2 previous errors
+
+For more information about this error, try `rustc --explain E0308`.