Skip to content

Commit

Permalink
Rollup merge of rust-lang#88332 - spastorino:argument-types-tait-test…
Browse files Browse the repository at this point in the history
…, r=oli-obk

Add argument types tait tests

r? `@oli-obk`

Related to rust-lang#86727
  • Loading branch information
Dylan-DPC authored Aug 26, 2021
2 parents b6c5f72 + 4924e34 commit 41fbafa
Show file tree
Hide file tree
Showing 2 changed files with 43 additions and 0 deletions.
28 changes: 28 additions & 0 deletions src/test/ui/type-alias-impl-trait/argument-types.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]

use std::fmt::Debug;

type Foo = impl Debug;

// FIXME: This should compile, but it currently doesn't
fn foo1(mut x: Foo) {
x = 22_u32;
//~^ ERROR: mismatched types [E0308]
}

fn foo2(mut x: Foo) {
// no constraint on x
}

fn foo3(x: Foo) {
println!("{:?}", x);
}

fn foo_value() -> Foo {
11_u32
}

fn main() {
foo3(foo_value());
}
15 changes: 15 additions & 0 deletions src/test/ui/type-alias-impl-trait/argument-types.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
error[E0308]: mismatched types
--> $DIR/argument-types.rs:10:9
|
LL | type Foo = impl Debug;
| ---------- the expected opaque type
...
LL | x = 22_u32;
| ^^^^^^ expected opaque type, found `u32`
|
= note: expected opaque type `impl Debug`
found type `u32`

error: aborting due to previous error

For more information about this error, try `rustc --explain E0308`.

0 comments on commit 41fbafa

Please sign in to comment.