diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-08-12 10:58:21 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-08-12 10:58:21 +0200 |
| commit | 58ac2b2b6b86c32c3b84585d8fa7a43a8dad9fb2 (patch) | |
| tree | 74738a8b56e467d56a47e997443e43a4dea155c4 | |
| parent | 4d27aaccf1cf105a7bb524dcb27aa5046ca05869 (diff) | |
| parent | 75d2db97fe7ab1c17cf6865c6a5a575f5aede6f7 (diff) | |
| download | rust-58ac2b2b6b86c32c3b84585d8fa7a43a8dad9fb2.tar.gz rust-58ac2b2b6b86c32c3b84585d8fa7a43a8dad9fb2.zip | |
Rollup merge of #63473 - adrian-budau:master, r=Centril
Regression test for #56870 Closes #56870.
| -rw-r--r-- | src/test/ui/issues/issue-56870.rs | 38 |
1 files changed, 38 insertions, 0 deletions
diff --git a/src/test/ui/issues/issue-56870.rs b/src/test/ui/issues/issue-56870.rs new file mode 100644 index 00000000000..137a0ede0b3 --- /dev/null +++ b/src/test/ui/issues/issue-56870.rs @@ -0,0 +1,38 @@ +// build-pass +// Regression test for #56870: Internal compiler error (traits & associated consts) + +use std::fmt::Debug; + +pub trait Foo<T> { + const FOO: *const u8; +} + +impl <T: Debug> Foo<T> for dyn Debug { + const FOO: *const u8 = <T as Debug>::fmt as *const u8; +} + +pub trait Bar { + const BAR: *const u8; +} + +pub trait Baz { + type Data: Debug; +} + +pub struct BarStruct<S: Baz>(S); + +impl<S: Baz> Bar for BarStruct<S> { + const BAR: *const u8 = <dyn Debug as Foo<<S as Baz>::Data>>::FOO; +} + +struct AnotherStruct; +#[derive(Debug)] +struct SomeStruct; + +impl Baz for AnotherStruct { + type Data = SomeStruct; +} + +fn main() { + let _x = <BarStruct<AnotherStruct> as Bar>::BAR; +} |
