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

Rollup of 9 pull requests #105095

Merged
merged 20 commits into from
Dec 1, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
20 commits
Select commit Hold shift + click to select a range
bb04e7e
rustdoc-json: Document and Test that args can be patterns.
aDotInTheVoid Oct 14, 2022
db760f6
bootstrap
dotdot0 Nov 25, 2022
8d14898
suggested changes
dotdot0 Nov 27, 2022
d742407
suggested changes
dotdot0 Nov 27, 2022
3980945
fix #104884, Avoid Invalid code suggested when encountering unsatisfi…
chenyukang Nov 29, 2022
9286228
Don't assume that core::fmt::Debug will always have one item.
aDotInTheVoid Nov 29, 2022
43f5d2b
rustdoc: add comment to confusing CSS `main { min-width: 0 }`
notriddle Nov 29, 2022
42ff718
Add a regression test for #104322
weiznich Nov 30, 2022
3a61ab6
rustdoc: clean up sidebar link CSS
notriddle Nov 30, 2022
f6e8580
Add Nicholas Bishop to `.mailmap`
nicholasbishop Nov 29, 2022
fe6d9e9
add Tshepang Mbambo to .mailmap
tshepang Nov 30, 2022
091f5e1
Rollup merge of #103065 - aDotInTheVoid:rdj-arg-pattern, r=GuillaumeG…
matthiaskrgr Nov 30, 2022
3d64420
Rollup merge of #104865 - pratushrai0309:bootstrap, r=jyn514
matthiaskrgr Nov 30, 2022
eabc072
Rollup merge of #104895 - chenyukang:yukang/fix-104884-serde, r=TaKO8Ki
matthiaskrgr Nov 30, 2022
cbf1a0e
Rollup merge of #105063 - aDotInTheVoid:rdj-dont-assume-core, r=notri…
matthiaskrgr Nov 30, 2022
4357c2d
Rollup merge of #105064 - notriddle:notriddle/main-min-width, r=Guill…
matthiaskrgr Nov 30, 2022
c56c377
Rollup merge of #105074 - nicholasbishop:bishop-mailmap, r=Mark-Simul…
matthiaskrgr Nov 30, 2022
6c4b5a2
Rollup merge of #105081 - weiznich:regression_test_for_104322, r=comp…
matthiaskrgr Nov 30, 2022
e005d04
Rollup merge of #105086 - notriddle:notriddle/sidebar-css, r=Guillaum…
matthiaskrgr Nov 30, 2022
ffb071f
Rollup merge of #105091 - tshepang:mailmap, r=compiler-errors
matthiaskrgr Nov 30, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .mailmap
Original file line number Diff line number Diff line change
Expand Up @@ -402,6 +402,8 @@ Nathaniel Herman <nherman@post.harvard.edu> Nathaniel Herman <nherman@college.ha
Neil Pankey <npankey@gmail.com> <neil@wire.im>
Ngo Iok Ui (Wu Yu Wei) <wusyong9104@gmail.com>
Nicholas Baron <nicholas.baron.ten@gmail.com>
Nicholas Bishop <nbishop@nbishop.net> <nicholasbishop@gmail.com>
Nicholas Bishop <nbishop@nbishop.net> <nicholasbishop@google.com>
Nicholas Nethercote <n.nethercote@gmail.com> <nnethercote@apple.com>
Nicholas Nethercote <n.nethercote@gmail.com> <nnethercote@mozilla.com>
Nick Platt <platt.nicholas@gmail.com>
Expand Down Expand Up @@ -530,6 +532,7 @@ Tomas Koutsky <tomas@stepnivlk.net>
Torsten Weber <TorstenWeber12@gmail.com>
Torsten Weber <TorstenWeber12@gmail.com> <torstenweber12@gmail.com>
Trevor Spiteri <tspiteri@ieee.org> <trevor.spiteri@um.edu.mt>
Tshepang Mbambo <tshepang@gmail.com>
Ty Overby <ty@pre-alpha.com>
Tyler Mandry <tmandry@gmail.com> <tmandry@google.com>
Tyler Ruckinger <t.ruckinger@gmail.com>
Expand Down
6 changes: 6 additions & 0 deletions compiler/rustc_middle/src/ty/diagnostics.rs
Original file line number Diff line number Diff line change
Expand Up @@ -355,6 +355,12 @@ pub fn suggest_constraining_type_params<'a>(
));
}

// FIXME: remove the suggestions that are from derive, as the span is not correct
suggestions = suggestions
.into_iter()
.filter(|(span, _, _)| !span.in_derive_expansion())
.collect::<Vec<_>>();

if suggestions.len() == 1 {
let (span, suggestion, msg) = suggestions.pop().unwrap();

Expand Down
5 changes: 3 additions & 2 deletions src/bootstrap/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -647,9 +647,10 @@ impl Build {
if !update(true).status().map_or(false, |status| status.success()) {
self.run(&mut update(false));
}

self.run(Command::new("git").args(&["stash", "push"]).current_dir(&absolute_path));
self.run(Command::new("git").args(&["reset", "-q", "--hard"]).current_dir(&absolute_path));
self.run(Command::new("git").args(&["clean", "-qdfx"]).current_dir(absolute_path));
self.run(Command::new("git").args(&["clean", "-qdfx"]).current_dir(&absolute_path));
self.run(Command::new("git").args(&["stash", "pop"]).current_dir(absolute_path));
}

/// If any submodule has been initialized already, sync it unconditionally.
Expand Down
14 changes: 6 additions & 8 deletions src/librustdoc/html/static/css/rustdoc.css
Original file line number Diff line number Diff line change
Expand Up @@ -314,7 +314,7 @@ main {
position: relative;
flex-grow: 1;
padding: 10px 15px 40px 45px;
min-width: 0;
min-width: 0; /* avoid growing beyond the size limit */
}

.source main {
Expand Down Expand Up @@ -480,15 +480,11 @@ ul.block, .block li {
list-style: none;
}

.block a,
.sidebar h2 a,
.sidebar h3 a {
.sidebar-elems a,
.sidebar > h2 a {
display: block;
padding: 0.25rem;
padding: 0.25rem; /* 4px */
margin-left: -0.25rem;

text-overflow: ellipsis;
overflow: hidden;
}

.sidebar h2 {
Expand Down Expand Up @@ -522,6 +518,8 @@ ul.block, .block li {

.sidebar-elems .block li a {
white-space: nowrap;
text-overflow: ellipsis;
overflow: hidden;
}

.mobile-topbar {
Expand Down
4 changes: 4 additions & 0 deletions src/rustdoc-json-types/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -615,6 +615,10 @@ pub struct FunctionPointer {

#[derive(Clone, Debug, PartialEq, Eq, Hash, Serialize, Deserialize)]
pub struct FnDecl {
/// List of argument names and their type.
///
/// Note that not all names will be valid identifiers, as some of
/// them may be patterns.
pub inputs: Vec<(String, Type)>,
pub output: Option<Type>,
pub c_variadic: bool,
Expand Down
7 changes: 7 additions & 0 deletions src/test/rustdoc-json/fns/pattern_arg.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
// @is "$.index[*][?(@.name=='fst')].inner.decl.inputs[0][0]" '"(x, _)"'
pub fn fst<X, Y>((x, _): (X, Y)) -> X {
x
}

// @is "$.index[*][?(@.name=='drop_int')].inner.decl.inputs[0][0]" '"_"'
pub fn drop_int(_: i32) {}
7 changes: 6 additions & 1 deletion src/test/rustdoc-json/traits/uses_extern_trait.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3,5 +3,10 @@ pub fn drop_default<T: core::default::Default>(_x: T) {}

// FIXME(adotinthevoid): Theses shouldn't be here
// @has "$.index[*][?(@.name=='Debug')]"
// @set Debug_fmt = "$.index[*][?(@.name=='Debug')].inner.items[*]"

// Debug may have several items. All we depend on here the that `fmt` is first. See
// https://github.com/rust-lang/rust/pull/104525#issuecomment-1331087852 for why we
// can't use [*].

// @set Debug_fmt = "$.index[*][?(@.name=='Debug')].inner.items[0]"
// @has "$.index[*][?(@.name=='fmt')].id" $Debug_fmt
23 changes: 23 additions & 0 deletions src/test/ui/proc-macro/auxiliary/issue-104884.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,23 @@
// force-host
// no-prefer-dynamic

#![crate_type = "proc-macro"]

extern crate proc_macro;

use proc_macro::TokenStream;

#[proc_macro_derive(AddImpl)]

pub fn derive(input: TokenStream) -> TokenStream {
"use std::cmp::Ordering;

impl<T> Ord for PriorityQueue<T> {
fn cmp(&self, other: &Self) -> Ordering {
self.0.cmp(&self.height)
}
}
"
.parse()
.unwrap()
}
20 changes: 20 additions & 0 deletions src/test/ui/proc-macro/issue-104884-trait-impl-sugg-err.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
// aux-build:issue-104884.rs

use std::collections::BinaryHeap;

#[macro_use]
extern crate issue_104884;

#[derive(PartialEq, Eq, PartialOrd, Ord)]
struct PriorityQueueEntry<T> {
value: T,
}

#[derive(PartialOrd, AddImpl)]
//~^ ERROR can't compare `PriorityQueue<T>` with `PriorityQueue<T>`
//~| ERROR the trait bound `PriorityQueue<T>: Eq` is not satisfied
//~| ERROR can't compare `T` with `T`

struct PriorityQueue<T>(BinaryHeap<PriorityQueueEntry<T>>);

fn main() {}
48 changes: 48 additions & 0 deletions src/test/ui/proc-macro/issue-104884-trait-impl-sugg-err.stderr
Original file line number Diff line number Diff line change
@@ -0,0 +1,48 @@
error[E0277]: can't compare `PriorityQueue<T>` with `PriorityQueue<T>`
--> $DIR/issue-104884-trait-impl-sugg-err.rs:13:10
|
LL | #[derive(PartialOrd, AddImpl)]
| ^^^^^^^^^^ no implementation for `PriorityQueue<T> == PriorityQueue<T>`
|
= help: the trait `PartialEq` is not implemented for `PriorityQueue<T>`
note: required by a bound in `PartialOrd`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
LL | pub trait PartialOrd<Rhs: ?Sized = Self>: PartialEq<Rhs> {
| ^^^^^^^^^^^^^^ required by this bound in `PartialOrd`
= note: this error originates in the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: the trait bound `PriorityQueue<T>: Eq` is not satisfied
--> $DIR/issue-104884-trait-impl-sugg-err.rs:13:22
|
LL | #[derive(PartialOrd, AddImpl)]
| ^^^^^^^ the trait `Eq` is not implemented for `PriorityQueue<T>`
|
note: required by a bound in `Ord`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
LL | pub trait Ord: Eq + PartialOrd<Self> {
| ^^ required by this bound in `Ord`
= note: this error originates in the derive macro `AddImpl` (in Nightly builds, run with -Z macro-backtrace for more info)

error[E0277]: can't compare `T` with `T`
--> $DIR/issue-104884-trait-impl-sugg-err.rs:13:22
|
LL | #[derive(PartialOrd, AddImpl)]
| ^^^^^^^ no implementation for `T < T` and `T > T`
|
note: required for `PriorityQueue<T>` to implement `PartialOrd`
--> $DIR/issue-104884-trait-impl-sugg-err.rs:13:10
|
LL | #[derive(PartialOrd, AddImpl)]
| ^^^^^^^^^^
note: required by a bound in `Ord`
--> $SRC_DIR/core/src/cmp.rs:LL:COL
|
LL | pub trait Ord: Eq + PartialOrd<Self> {
| ^^^^^^^^^^^^^^^^ required by this bound in `Ord`
= note: this error originates in the derive macro `AddImpl` which comes from the expansion of the derive macro `PartialOrd` (in Nightly builds, run with -Z macro-backtrace for more info)

error: aborting due to 3 previous errors

For more information about this error, try `rustc --explain E0277`.
80 changes: 80 additions & 0 deletions src/test/ui/traits/issue-104322.rs
Original file line number Diff line number Diff line change
@@ -0,0 +1,80 @@
// build-pass
//
// Tests that overflows do not occur in certain situations
// related to generic diesel code

use mini_diesel::*;

pub trait HandleDelete<K> {}

pub fn handle_delete<D, R>()
where
R: HasTable,
R::Table: HandleDelete<D> + 'static,
{
}

impl<K, T> HandleDelete<K> for T
where
T: Table + HasTable<Table = T> + 'static,
K: 'static,
&'static K: Identifiable<Table = T>,
T::PrimaryKey: EqAll<<&'static K as Identifiable>::Id>,
T::Query: FilterDsl<<T::PrimaryKey as EqAll<<&'static K as Identifiable>::Id>>::Output>,
Filter<T::Query, <T::PrimaryKey as EqAll<<&'static K as Identifiable>::Id>>::Output>:
IntoUpdateTarget<Table = T>,
{
}

mod mini_diesel {
pub trait HasTable {
type Table: Table;
}

pub trait Identifiable: HasTable {
type Id;
}

pub trait EqAll<Rhs> {
type Output;
}

pub trait IntoUpdateTarget: HasTable {
type WhereClause;
}

pub trait Query {
type SqlType;
}

pub trait AsQuery {
type Query: Query;
}
impl<T: Query> AsQuery for T {
type Query = Self;
}

pub trait FilterDsl<Predicate> {
type Output;
}

impl<T, Predicate> FilterDsl<Predicate> for T
where
T: Table,
T::Query: FilterDsl<Predicate>,
{
type Output = Filter<T::Query, Predicate>;
}

pub trait QuerySource {
type FromClause;
}

pub trait Table: QuerySource + AsQuery + Sized {
type PrimaryKey;
}

pub type Filter<Source, Predicate> = <Source as FilterDsl<Predicate>>::Output;
}

fn main() {}