summaryrefslogtreecommitdiffstats
path: root/tests/ui/traits/new-solver/int-var-alias-eq.rs
diff options
context:
space:
mode:
Diffstat (limited to 'tests/ui/traits/new-solver/int-var-alias-eq.rs')
-rw-r--r--tests/ui/traits/new-solver/int-var-alias-eq.rs18
1 files changed, 18 insertions, 0 deletions
diff --git a/tests/ui/traits/new-solver/int-var-alias-eq.rs b/tests/ui/traits/new-solver/int-var-alias-eq.rs
new file mode 100644
index 000000000..2da387db4
--- /dev/null
+++ b/tests/ui/traits/new-solver/int-var-alias-eq.rs
@@ -0,0 +1,18 @@
+// check-pass
+// compile-flags: -Ztrait-solver=next
+
+// HIR typeck ends up equating `<_#0i as Add>::Output == _#0i`.
+// Want to make sure that we emit an alias-eq goal for this,
+// instead of treating it as a type error and bailing.
+
+fn test() {
+ // fallback
+ let x = 1 + 2;
+}
+
+fn test2() -> u32 {
+ // expectation from return ty
+ 1 + 2
+}
+
+fn main() {}