diff options
| author | bors <bors@rust-lang.org> | 2019-11-20 10:51:26 +0000 |
|---|---|---|
| committer | bors <bors@rust-lang.org> | 2019-11-20 10:51:26 +0000 |
| commit | ea540b0892ed6b62d170c7f0a9aa362e590de8b4 (patch) | |
| tree | d837319ab59d47cd410f04d3e2eb50f7a6abf1ab /src/test | |
| parent | f50d6ea348c2dd7c2f76e35ecde6560d87bb98ec (diff) | |
| parent | 0ff73535ed0044c517697fa3527da3f52069dc3d (diff) | |
| download | rust-ea540b0892ed6b62d170c7f0a9aa362e590de8b4.tar.gz rust-ea540b0892ed6b62d170c7f0a9aa362e590de8b4.zip | |
Auto merge of #66392 - estebank:trait-alias-ice, r=eddyb
Do not ICE on trait aliases with missing obligations Fix #65673.
Diffstat (limited to 'src/test')
| -rw-r--r-- | src/test/ui/issues/issue-65673.rs | 12 | ||||
| -rw-r--r-- | src/test/ui/issues/issue-65673.stderr | 17 |
2 files changed, 29 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-65673.rs b/src/test/ui/issues/issue-65673.rs new file mode 100644 index 00000000000..4b47bd493a5 --- /dev/null +++ b/src/test/ui/issues/issue-65673.rs @@ -0,0 +1,12 @@ +#![feature(trait_alias)] // Enabled to reduce stderr output, but can be triggered even if disabled. +trait Trait {} +trait WithType { + type Ctx; +} +trait Alias<T> = where T: Trait; + +impl<T> WithType for T { + type Ctx = dyn Alias<T>; +//~^ ERROR the size for values of type `(dyn Trait + 'static)` cannot be known at compilation time +} +fn main() {} diff --git a/src/test/ui/issues/issue-65673.stderr b/src/test/ui/issues/issue-65673.stderr new file mode 100644 index 00000000000..a556e35b6a9 --- /dev/null +++ b/src/test/ui/issues/issue-65673.stderr @@ -0,0 +1,17 @@ +error[E0277]: the size for values of type `(dyn Trait + 'static)` cannot be known at compilation time + --> $DIR/issue-65673.rs:9:5 + | +LL | type Ctx; + | --- associated type defined here +... +LL | impl<T> WithType for T { + | ---------------------- in this `impl` item +LL | type Ctx = dyn Alias<T>; + | ^^^^^^^^^^^^^^^^^^^^^^^^ doesn't have a size known at compile-time + | + = help: the trait `std::marker::Sized` is not implemented for `(dyn Trait + 'static)` + = note: to learn more, visit <https://doc.rust-lang.org/book/ch19-04-advanced-types.html#dynamically-sized-types-and-the-sized-trait> + +error: aborting due to previous error + +For more information about this error, try `rustc --explain E0277`. |
