Skip to content

Commit

Permalink
Rollup merge of #88348 - spastorino:field-types-tait-test, r=oli-obk
Browse files Browse the repository at this point in the history
Add field types tait tests

r? ```@oli-obk```

Related to #86727
  • Loading branch information
Manishearth committed Aug 26, 2021
2 parents cb95e36 + bb583f7 commit af54936
Show file tree
Hide file tree
Showing 2 changed files with 41 additions and 0 deletions.
20 changes: 20 additions & 0 deletions src/test/ui/type-alias-impl-trait/field-types.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
#![feature(type_alias_impl_trait)]
#![allow(dead_code)]

// FIXME This should compile, but it currently doesn't

use std::fmt::Debug;

type Foo = impl Debug;
//~^ ERROR: could not find defining uses

struct Bar {
foo: Foo,
}

fn bar() -> Bar {
Bar { foo: "foo" }
//~^ ERROR: mismatched types [E0308]
}

fn main() {}
21 changes: 21 additions & 0 deletions src/test/ui/type-alias-impl-trait/field-types.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
error[E0308]: mismatched types
--> $DIR/field-types.rs:16:16
|
LL | type Foo = impl Debug;
| ---------- the expected opaque type
...
LL | Bar { foo: "foo" }
| ^^^^^ expected opaque type, found `&str`
|
= note: expected opaque type `impl Debug`
found reference `&'static str`

error: could not find defining uses
--> $DIR/field-types.rs:8:12
|
LL | type Foo = impl Debug;
| ^^^^^^^^^^

error: aborting due to 2 previous errors

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

0 comments on commit af54936

Please sign in to comment.