Skip to content

Commit

Permalink
Merge pull request #1137 from dtolnay/up
Browse files Browse the repository at this point in the history
Update test suite to nightly-2022-03-14
  • Loading branch information
dtolnay committed Mar 14, 2022
2 parents b49e9a3 + a9330e4 commit aaf9155
Showing 1 changed file with 21 additions and 1 deletion.
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",

// 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",

// 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

0 comments on commit aaf9155

Please sign in to comment.