Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update test suite to nightly-2022-03-14 #1137

Merged
merged 2 commits into from Mar 14, 2022
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
22 changes: 21 additions & 1 deletion tests/repo/mod.rs
Expand Up @@ -10,10 +10,30 @@ use std::path::Path;
use tar::Archive;
use walkdir::DirEntry;

const REVISION: &str = "5e57faa78aa7661c6000204591558f6665f11abc";
const REVISION: &str = "e95b10ba4ac4564ed25f7eef143e3182c33b3902";

#[rustfmt::skip]
static EXCLUDE: &[&str] = &[
// TODO: trait bound with associated constant constraint:
// where T: Trait<N = 3usize>
"src/test/ui/associated-consts/assoc-const.rs",
Comment on lines +17 to +19
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


// TODO: trailing where-clause on impl associated type:
// impl<T> Trait for Ty<T> { type Assoc<'a> = T where T: 'a; }
"src/test/ui/generic-associated-types/collections.rs",
"src/test/ui/generic-associated-types/construct_with_other_type.rs",
"src/test/ui/generic-associated-types/impl_bounds_ok.rs",
"src/test/ui/generic-associated-types/issue-76826.rs",
"src/test/ui/generic-associated-types/issue-88287.rs",
"src/test/ui/generic-associated-types/issue-91139.rs",
"src/test/ui/generic-associated-types/issue-92280.rs",
"src/test/ui/generic-associated-types/iterable.rs",
"src/test/ui/generic-associated-types/streaming_iterator.rs",
Comment on lines +21 to +31
Copy link
Owner Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.


// TODO: negative literal const generic:
// impl Signed<-152> {…}
"src/test/ui/symbol-names/const-generics-demangling.rs",

// TODO: impl ~const T {}
// https://github.com/dtolnay/syn/issues/1051
"src/test/ui/rfc-2632-const-trait-impl/syntax.rs",
Expand Down