rust/tests/ui/issues
bors f4f0fafd0c Auto merge of #132706 - compiler-errors:async-closures, r=oli-obk
Stabilize async closures (RFC 3668)

# Async Closures Stabilization Report

This report proposes the stabilization of `#![feature(async_closure)]` ([RFC 3668](https://rust-lang.github.io/rfcs/3668-async-closures.html)). This is a long-awaited feature that increases the expressiveness of the Rust language and fills a pressing gap in the async ecosystem.

## Stabilization summary

* You can write async closures like `async || {}` which return futures that can borrow from their captures and can be higher-ranked in their argument lifetimes.
* You can express trait bounds for these async closures using the `AsyncFn` family of traits, analogous to the `Fn` family.

```rust
async fn takes_an_async_fn(f: impl AsyncFn(&str)) {
    futures::join(f("hello"), f("world")).await;
}

takes_an_async_fn(async |s| { other_fn(s).await }).await;
```

## Motivation

Without this feature, users hit two major obstacles when writing async code that uses closures and `Fn` trait bounds:

- The inability to express higher-ranked async function signatures.
- That closures cannot return futures that borrow from the closure captures.

That is, for the first, we cannot write:

```rust
// We cannot express higher-ranked async function signatures.
async fn f<Fut>(_: impl for<'a> Fn(&'a u8) -> Fut)
where
    Fut: Future<Output = ()>,
{ todo!() }

async fn main() {
    async fn g(_: &u8) { todo!() }
    f(g).await;
    //~^ ERROR mismatched types
    //~| ERROR one type is more general than the other
}
```

And for the second, we cannot write:

```rust
// Closures cannot return futures that borrow closure captures.
async fn f<Fut: Future<Output = ()>>(_: impl FnMut() -> Fut)
{ todo!() }

async fn main() {
    let mut xs = vec![];
    f(|| async {
        async fn g() -> u8 { todo!() }
        xs.push(g().await);
    });
    //~^ ERROR captured variable cannot escape `FnMut` closure body
}
```

Async closures provide a first-class solution to these problems.

For further background, please refer to the [motivation section](https://rust-lang.github.io/rfcs/3668-async-closures.html#motivation) of the RFC.

## Major design decisions since RFC

The RFC had left open the question of whether we would spell the bounds syntax for async closures...

```rust
// ...as this...
fn f() -> impl AsyncFn() -> u8 { todo!() }
// ...or as this:
fn f() -> impl async Fn() -> u8 { todo!() }
```

We've decided to spell this as `AsyncFn{,Mut,Once}`.

The `Fn` family of traits is special in many ways.  We had originally argued that, due to this specialness, that perhaps the `async Fn` syntax could be adopted without having to decide whether a general `async Trait` mechanism would ever be adopted.  However, concerns have been raised that we may not want to use `async Fn` syntax unless we would pursue more general trait modifiers.  Since there remain substantial open questions on those -- and we don't want to rush any design work there -- it makes sense to ship this needed feature using the `AsyncFn`-style bounds syntax.

Since we would, in no case, be shipping a generalized trait modifier system anytime soon, we'll be continuing to see `AsyncFoo` traits appear across the ecosystem regardless.  If we were to ever later ship some general mechanism, we could at that time manage the migration from `AsyncFn` to `async Fn`, just as we'd be enabling and managing the migration of many other traits.

Note that, as specified in RFC 3668, the details of the `AsyncFn*` traits are not exposed and they can only be named via the "parentheses sugar".  That is, we can write `T: AsyncFn() -> u8` but not `T: AsyncFn<Output = u8>`.

Unlike the `Fn` traits, we cannot project to the `Output` associated type of the `AsyncFn` traits.  That is, while we can write...

```rust
fn f<F: Fn() -> u8>(_: F::Output) {}
```

...we cannot write:

```rust
fn f<F: AsyncFn() -> u8>(_: F::Output) {}
//~^ ERROR
```

The choice of `AsyncFn{,Mut,Once}` bounds syntax obviates, for our purposes here, another question decided after that RFC, which was how to order bound modifiers such as `for<'a> async Fn()`.

Other than answering the open question in the RFC on syntax, nothing has changed about the design of this feature between RFC 3668 and this stabilization.

## What is stabilized

For those interested in the technical details, please see [the dev guide section](https://rustc-dev-guide.rust-lang.org/coroutine-closures.html) I authored.

#### Async closures

Other than in how they solve the problems described above, async closures act similarly to closures that return async blocks, and can have parts of their signatures specified:

```rust
// They can have arguments annotated with types:
let _ = async |_: u8| { todo!() };

// They can have their return types annotated:
let _ = async || -> u8 { todo!() };

// They can be higher-ranked:
let _ = async |_: &str| { todo!() };

// They can capture values by move:
let x = String::from("hello, world");
let _ = async move || do_something(&x).await };
```

When called, they return an anonymous future type corresponding to the (not-yet-executed) body of the closure. These can be awaited like any other future.

What distinguishes async closures is that, unlike closures that return async blocks, the futures returned from the async closure can capture state from the async closure. For example:

```rust
let vec: Vec<String> = vec![];

let closure = async || {
    vec.push(ready(String::from("")).await);
};
```

The async closure captures `vec` with some `&'closure mut Vec<String>` which lives until the closure is dropped. Every call to `closure()` returns a future which reborrows that mutable reference `&'call mut Vec<String>` which lives until the future is dropped (e.g. it is `await`ed).

As another example:

```rust
let string: String = "Hello, world".into();

let closure = async move || {
    ready(&string).await;
};
```

The closure is marked with `move`, which means it takes ownership of the string by *value*. The future that is returned by calling `closure()` returns a future which borrows a reference `&'call String` which lives until the future is dropped (e.g. it is `await`ed).

#### Async fn trait family

To support the lending capability of async closures, and to provide a first-class way to express higher-ranked async closures, we introduce the `AsyncFn*` family of traits. See the [corresponding section](https://rust-lang.github.io/rfcs/3668-async-closures.html#asyncfn) of the RFC.

We stabilize naming `AsyncFn*` via the "parenthesized sugar" syntax that normal `Fn*` traits can be named. The `AsyncFn*` trait can be used anywhere a `Fn*` trait bound is allowed, such as:

```rust
/// In return-position impl trait:
fn closure() -> impl AsyncFn() { async || {} }

/// In trait bounds:
trait Foo<F>: Sized
where
    F: AsyncFn()
{
    fn new(f: F) -> Self;
}

/// in GATs:
trait Gat {
    type AsyncHasher<T>: AsyncFn(T) -> i32;
}
```

Other than using them in trait bounds, the definitions of these traits are not directly observable, but certain aspects of their behavior can be indirectly observed such as the fact that:

* `AsyncFn::async_call` and `AsyncFnMut::async_call_mut` return a future which is *lending*, and therefore borrows the `&self` lifetime of the callee.

```rust
fn by_ref_call(c: impl AsyncFn()) {
    let fut = c();
    drop(c);
    //   ^ Cannot drop `c` since it is borrowed by `fut`.
}
```

* `AsyncFnOnce::async_call_once` returns a future that takes ownership of the callee.

```rust
fn by_ref_call(c: impl AsyncFnOnce()) {
    let fut = c();
    let _ = c();
    //      ^ Cannot call `c` since calling it takes ownership the callee.
}
```

* All currently-stable callable types (i.e., closures, function items, function pointers, and `dyn Fn*` trait objects) automatically implement `AsyncFn*() -> T` if they implement `Fn*() -> Fut` for some output type `Fut`, and `Fut` implements `Future<Output = T>`.
    * This is to make sure that `AsyncFn*()` trait bounds have maximum compatibility with existing callable types which return futures, such as async function items and closures which return boxed futures.
    * For now, this only works currently for *concrete* callable types -- for example, a argument-position impl trait like `impl Fn() -> impl Future<Output = ()>` does not implement `AsyncFn()`, due to the fact that a `AsyncFn`-if-`Fn` blanket impl does not exist in reality. This may be relaxed in the future. Users can work around this by wrapping their type in an async closure and calling it. I expect this to not matter much in practice, as users are encouraged to write `AsyncFn` bounds directly.

```rust
fn is_async_fn(_: impl AsyncFn(&str)) {}

async fn async_fn_item(s: &str) { todo!() }
is_async_fn(s);
// ^^^ This works.

fn generic(f: impl Fn() -> impl Future<Output = ()>) {
    is_async_fn(f);
    // ^^^ This does not work (yet).
}
```

#### The by-move future

When async closures are called with `AsyncFn`/`AsyncFnMut`, they return a coroutine that borrows from the closure. However, when they are called via `AsyncFnOnce`, we consume that closure, and cannot return a coroutine that borrows from data that is now dropped.

To work around around this limitation, we synthesize a separate future type for calling the async closure via `AsyncFnOnce`.

This future executes identically to the by-ref future returned from calling the async closure, except for the fact that it has a different set of captures, since we must *move* the captures from the parent async into the child future.

#### Interactions between async closures and the `Fn*` family of traits

Async closures always implement `FnOnce`, since they always can be called once. They may also implement `Fn` or `FnMut` if their body is compatible with the calling mode (i.e. if they do not mutate their captures, or they do not capture their captures, respectively) and if the future returned by the async closure is not *lending*.

```rust
let id = String::new();

let mapped: Vec</* impl Future */> =
    [/* elements */]
    .into_iter()
    // `Iterator::map` takes an `impl FnMut`
    .map(async |element| {
        do_something(&id, element).await;
    })
    .collect();
```

See [the dev guide](https://rustc-dev-guide.rust-lang.org/coroutine-closures.html#follow-up-when-do-async-closures-implement-the-regular-fn-traits) for a detailed explanation for the situations where this may not be possible due to the lending nature of async closures.

#### Other notable features of async closures shared with synchronous closures

* Async closures are `Copy` and/or `Clone` if their captures are `Copy`/`Clone`.
* Async closures do closure signature inference: If an async closure is passed to a function with a `AsyncFn` or `Fn` trait bound, we can eagerly infer the argument types of the closure. More details are provided in [the dev guide](https://rustc-dev-guide.rust-lang.org/coroutine-closures.html#closure-signature-inference).

#### Lints

This PR also stabilizes the `CLOSURE_RETURNING_ASYNC_BLOCK` lint as an `allow` lint. This lints on "old-style" async closures:

```rust
#![warn(closure_returning_async_block)]
let c = |x: &str| async {};
```

We should encourage users to use `async || {}` where possible. This lint remains `allow` and may be refined in the future because it has a few false positives (namely, see: "Where do we expect rewriting `|| async {}` into `async || {}` to fail?")

An alternative that could be made at the time of stabilization is to put this lint behind another gate, so we can decide to stabilize it later.

## What isn't stabilized (aka, potential future work)

#### `async Fn*()` bound syntax

We decided to stabilize async closures without the `async Fn*()` bound modifier syntax. The general direction of this syntax and how it fits is still being considered by T-lang (e.g. in [RFC 3710](https://github.com/rust-lang/rfcs/pull/3710)).

#### Naming the futures returned by async closures

This stabilization PR does not provide a way of naming the futures returned by calling `AsyncFn*`.

Exposing a stable way to refer to these futures is important for building async-closure-aware combinators, and will be an important future step.

#### Return type notation-style bounds for async closures

The RFC described an RTN-like syntax for putting bounds on the future returned by an async closure:

```rust
async fn foo(x: F) -> Result<()>
where
    F: AsyncFn(&str) -> Result<()>,
    // The future from calling `F` is `Send` and `'static`.
    F(..): Send + 'static,
{}
```

This stabilization PR does not stabilize that syntax yet, which remains unimplemented (though will be soon).

#### `dyn AsyncFn*()`

`AsyncFn*` are not dyn-compatible yet. This will likely be implemented in the future along with the dyn-compatibility of async fn in trait, since the same issue (dealing with the future returned by a call) applies there.

## Tests

Tests exist for this feature in [`tests/ui/async-await/async-closures`](5b54286640/tests/ui/async-await/async-closures).

<details>
    <summary>A selected set of tests:</summary>

* Lending behavior of async closures
    * `tests/ui/async-await/async-closures/mutate.rs`
    * `tests/ui/async-await/async-closures/captures.rs`
    * `tests/ui/async-await/async-closures/precise-captures.rs`
    * `tests/ui/async-await/async-closures/no-borrow-from-env.rs`
* Async closures may be higher-ranked
    * `tests/ui/async-await/async-closures/higher-ranked.rs`
    * `tests/ui/async-await/async-closures/higher-ranked-return.rs`
* Async closures may implement `Fn*` traits
    * `tests/ui/async-await/async-closures/is-fn.rs`
    * `tests/ui/async-await/async-closures/implements-fnmut.rs`
* Async closures may be cloned
    * `tests/ui/async-await/async-closures/clone-closure.rs`
* Ownership of the upvars when `AsyncFnOnce` is called
    * `tests/ui/async-await/async-closures/drop.rs`
    * `tests/ui/async-await/async-closures/move-is-async-fn.rs`
    * `tests/ui/async-await/async-closures/force-move-due-to-inferred-kind.rs`
    * `tests/ui/async-await/async-closures/force-move-due-to-actually-fnonce.rs`
* Closure signature inference
    * `tests/ui/async-await/async-closures/signature-deduction.rs`
    * `tests/ui/async-await/async-closures/sig-from-bare-fn.rs`
    * `tests/ui/async-await/async-closures/signature-inference-from-two-part-bound.rs`

</details>

## Remaining bugs and open issues

* https://github.com/rust-lang/rust/issues/120694 tracks moving onto more general `LendingFn*` traits. No action needed, since it's not observable.
* https://github.com/rust-lang/rust/issues/124020 - Polymorphization ICE. Polymorphization needs to be heavily reworked. No action needed.
* https://github.com/rust-lang/rust/issues/127227 - Tracking reworking the way that rustdoc re-sugars bounds.
    * The part relevant to to `AsyncFn` is fixed by https://github.com/rust-lang/rust/pull/132697.

## Where do we expect rewriting `|| async {}` into `async || {}` to fail?

* Fn pointer coercions
    * Currently, it is not possible to coerce an async closure to an fn pointer like regular closures can be. This functionality may be implemented in the future.
```rust
let x: fn() -> _ = async || {};
```
* Argument capture
    * Like async functions, async closures always capture their input arguments. This is in contrast to something like `|t: T| async {}`, which doesn't capture `t` unless it is used in the async block. This may affect the `Send`-ness of the future or affect its outlives.
```rust
fn needs_send_future(_: impl Fn(NotSendArg) -> Fut)
where
    Fut: Future<Output = ()>,
{}

needs_send_future(async |_| {});
```

## History

#### Important feature history

- https://github.com/rust-lang/rust/pull/51580
- https://github.com/rust-lang/rust/pull/62292
- https://github.com/rust-lang/rust/pull/120361
- https://github.com/rust-lang/rust/pull/120712
- https://github.com/rust-lang/rust/pull/121857
- https://github.com/rust-lang/rust/pull/123660
- https://github.com/rust-lang/rust/pull/125259
- https://github.com/rust-lang/rust/pull/128506
- https://github.com/rust-lang/rust/pull/127482

## Acknowledgements

Thanks to `@oli-obk` for reviewing the bulk of the work for this feature. Thanks to `@nikomatsakis` for his design blog posts which generated interest for this feature, `@traviscross` for feedback and additions to this stabilization report. All errors are my own.

r? `@ghost`
2024-12-13 00:37:51 +00:00
..
auxiliary Stabilize async closures 2024-12-13 00:04:56 +00:00
issue-3668-non-constant-value-in-constant Use verbose style when suggesting changing const with let 2024-07-11 20:39:24 +00:00
issue-5997-outer-generic-parameter [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24687-embed-debuginfo [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37291 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37311-type-length-limit Gate the type length limit check behind a nightly flag 2024-07-12 21:16:09 -04:00
issue-38875 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41652 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49851 Make not finding core a fatal error 2024-03-06 18:19:13 -05:00
issue-50264-inner-deref-trait Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50865-private-impl-trait [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52140 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52141 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52705 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57741-dereference-boxed-value [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-74236 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-76077-inaccesible-private-fields [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-77218 [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
.gitattributes Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2074.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2150.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2150.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2151.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2151.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2170-exe.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2190-1.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2214.rs Use the rustc_private libc less in tests 2024-04-15 08:54:11 -04:00
issue-2281-part1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2281-part1.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2284.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2288.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2311-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2311.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2312.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2316-c.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2380-b.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2383.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2414-c.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2428.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2445-b.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2445.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2463.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2470-bounds-check-overflow.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2472.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2487-a.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2502.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2526-a.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2550.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2590.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2590.stderr Suggest .clone() in some move errors 2024-04-11 16:41:41 +00:00
issue-2631-b.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2642.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2708.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-2723-b.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2761.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2823.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2823.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2848.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-2848.stderr Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-2849.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2849.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2895.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2904.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2935.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2951.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2951.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-2989.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-2989.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-2995.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-2995.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3012-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3021-b.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3021-b.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3021-d.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3021-d.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3026.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3029.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3037.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3038.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3038.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3052.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3091.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3109.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3121.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3136-b.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3149.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3154.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3154.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3220.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3290.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3344.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3344.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3389.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3424.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3429.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3447.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3477.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3477.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3500.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3521-2.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3521-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3521-2.stderr Use verbose style when suggesting changing const with let 2024-07-11 20:39:24 +00:00
issue-3556.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3559.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3574.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3609.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3656.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3680.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-3680.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3702-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3702-2.stderr Sort method suggestions by DefPath instead of DefId 2024-03-27 14:02:16 +00:00
issue-3702.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3753.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3763.rs diagnostics: update test cases to refer to assoc fn with self as method 2023-02-22 08:40:47 -07:00
issue-3763.stderr diagnostics: update test cases to refer to assoc fn with self as method 2023-02-22 08:40:47 -07:00
issue-3779.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3779.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-3847.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3874.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3888-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3895.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3979-2.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3979-xcrate.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3979.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-3991.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-3993.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-3993.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-4025.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4208.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4228.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4252.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4265.rs Continue compilation even if inherent impl checks fail 2024-02-14 21:04:51 +00:00
issue-4265.stderr Continue compilation even if inherent impl checks fail 2024-02-14 21:04:51 +00:00
issue-4333.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4335.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4335.stderr Mention when type parameter could be Clone 2024-04-24 22:21:15 +00:00
issue-4387.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4464.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4517.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-4517.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-4541.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4542.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4545.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4734.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-4735.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4736.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4736.stderr Tweak "field not found" suggestion when giving struct literal for tuple struct type 2024-07-18 18:20:35 +00:00
issue-4759-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-4759.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4830.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4875.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-4935.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4935.stderr Use ordinal number in argument error 2024-07-14 13:50:09 +09:00
issue-4968.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-4968.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-4972.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-4972.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-5062.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-5062.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-5067.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5067.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-5100.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-5100.stderr Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-5192.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5280.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5315.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5321-immediates-with-bare-self.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5358-1.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-5358-1.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-5439.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-5439.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-5518.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5521.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5550.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5554.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5572.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5666.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5688.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5708.rs Revert "Rollup merge of #125572 - mu001999-contrib:dead/enhance, r=pnkfelix" 2024-08-03 07:57:31 -04:00
issue-5718.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5741.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5754.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5844.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5844.stderr Stabilize THIR unsafeck 2024-01-05 10:00:59 +00:00
issue-5883.rs Always register sized obligation for argument 2023-06-15 03:18:21 +00:00
issue-5883.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-5884.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5900.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5917.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-5950.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-5988.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6117.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6130.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-6153.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-6318.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6344-let.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-6344-match.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-6557.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6738.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-6738.stderr Use trait name instead of full constraint in suggestion message 2024-12-07 21:29:58 +00:00
issue-6892.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-6898.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6919.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-6936.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-6936.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7012.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7044.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7044.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-7061.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7061.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-7092.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-7092.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-7178.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7246.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7246.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-7268.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7344.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7364.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-7364.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-7519-match-unit-in-arg.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7563.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7575.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7575.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-7660.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7663.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7673-cast-generically-implemented-trait.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7784.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7867.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-7867.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-7899.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-7911.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-7911.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-7970a.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-7970a.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-8044.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8171-default-method-self-inherit-builtin-trait.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8248.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8248.stderr tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8249.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8259.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8391.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-8398.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8401.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8498.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-8506.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8521.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-8578.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8727.polonius.stderr Manual find replace updates 2023-11-24 21:04:51 +01:00
issue-8727.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-8727.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-8761.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-8761.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-8767.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-8767.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-8783.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-8860.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-8898.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9047.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9110.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9123.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9129.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9155.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9188.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9243.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9249.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9259.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9382.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9446.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9575.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-9575.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-9719.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9725.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-9725.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-9737.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9814.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-9814.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-9837.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9906.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9918.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-9942.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9951.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9951.stderr tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-9968.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10228.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10291.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10291.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-10396.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-10412.rs make type_flags(ReError) & HAS_ERROR 2024-03-20 17:29:58 +00:00
issue-10412.stderr make type_flags(ReError) & HAS_ERROR 2024-03-20 17:29:58 +00:00
issue-10436.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-10456.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10465.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10465.stderr Tweak wording of "implemented trait isn't imported" suggestion 2024-02-22 18:05:27 +00:00
issue-10545.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10545.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-10638.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10656.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10656.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-10683.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10718.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10734.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-10764.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10764.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-10767.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10802.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-10806.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10853.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-10877.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10877.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-10902.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11004.rs Unify all the always-false cfgs under the FALSE cfg 2024-04-07 01:16:45 +02:00
issue-11004.stderr Tweak raw-pointer field access and array indexing suggestions 2024-07-04 06:06:33 +00:00
issue-11047.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11085.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11192.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11192.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-11205.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11224.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11267.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11374.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-11374.stderr Revert "Auto merge of #122140 - oli-obk:track_errors13, r=davidtwco" 2024-03-11 21:28:16 +00:00
issue-11382.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11384.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11508.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11529.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11552.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11592.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11677.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11680.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11680.stderr Tweak privacy errors to account for reachable items 2023-06-22 16:50:31 +00:00
issue-11681.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11681.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-11709.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11740.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11771.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11771.stderr Don't call const normalize in error reporting 2024-09-22 13:55:06 -04:00
issue-11820.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11844.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-11844.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-11869.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-11958.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-11958.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-12033.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12041.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-12041.stderr Add multi-producer, multi-consumer channel (mpmc) 2024-09-30 20:43:51 +03:00
issue-12127.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-12127.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-12285.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12567.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-12567.stderr Do not report errors from move path builder. 2023-10-21 10:29:40 +00:00
issue-12612.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-12660.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-12677.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12729.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-12744.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12860.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-12863.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-12863.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-12909.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-12920.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13027.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13058.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13058.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13105.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13167.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13202.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13204.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13214.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13259-windows-tcb-trash.rs Use the rustc_private libc less in tests 2024-04-15 08:54:11 -04:00
issue-13264.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13323.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13359.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13359.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13405.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13407.rs Support bare unit structs in destructuring assignments 2023-12-08 19:55:07 +00:00
issue-13407.stderr Support bare unit structs in destructuring assignments 2023-12-08 19:55:07 +00:00
issue-13434.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13446.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13446.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13466.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-13466.stderr Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-13482-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13482-2.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13482.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13482.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13497-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13497-2.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13497.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-13497.stderr Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-13507-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-13620.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13665.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13703.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13763.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13775.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13808.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-13847.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-13847.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-13867.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14082.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14091-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14091-2.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14091.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14091.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14092.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14092.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14229.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14254.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14285.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14285.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14308.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14330.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14344.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14366.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14366.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14382.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14393.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14399.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14399.stderr tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14421.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14422.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14541.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-14541.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14721.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14721.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14821.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14845.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14845.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14853.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14853.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-14865.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14875.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14901.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-14915.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-14915.stderr Change E0369 diagnostic give note information for foreign items. 2024-06-25 10:00:30 +08:00
issue-14919.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-14959.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15034.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15034.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15043.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15063.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15094.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15094.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15104.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15129-rpass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15167.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15167.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15189.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15207.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15207.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15260.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15260.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15381.rs Migrate pattern matching 2023-01-11 14:40:02 -08:00
issue-15381.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15444.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15523-big.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15523.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15562.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15571.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15673.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15734.rs Ignore tests w/ current/next revisions from compare-mode=next-solver 2024-03-10 21:18:41 -04:00
issue-15735.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15756.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15756.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15763.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15774.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-15783.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-15783.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15793.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-15858.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-15858.stderr Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-15896.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15896.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-15965.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-15965.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16048.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16048.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16149.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16149.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16151.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-16256.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16256.stderr tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16278.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16401.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-16401.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16441.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16452.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16492.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16530.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16560.rs compiletest: Add a //@ needs-threads directive 2024-03-06 12:35:07 -08:00
issue-16562.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16562.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16596.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16643.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16648.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16668.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16671.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16683.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16683.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16725.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16725.stderr Use FnSig instead of raw FnDecl for ForeignItemKind::Fn 2024-08-16 14:10:06 -04:00
issue-16739.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16745.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16774.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-16783.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16819.rs Unify all the always-false cfgs under the FALSE cfg 2024-04-07 01:16:45 +02:00
issue-16922-rpass.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-16939.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16939.stderr Use verbose style for argument removal suggestion 2024-07-05 19:40:09 +00:00
issue-16966.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-16966.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-16994.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17001.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17001.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17033.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17033.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17068.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17121.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17216.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17252.rs Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
issue-17252.stderr Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
issue-17322.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17336.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17337.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17337.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17351.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17351.stderr tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17361.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17373.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17373.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17385.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17385.stderr Mention when type parameter could be Clone 2024-04-24 22:21:15 +00:00
issue-17405.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17405.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17441.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17441.stderr Update existing tests 2023-12-20 22:53:56 -05:00
issue-17450.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17503.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17546.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17546.stderr Special-case item attributes in the suggestion output 2023-04-12 22:50:10 +00:00
issue-17551.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17551.stderr Use fn ptr signature instead of {closure@..} in infer error 2024-04-10 00:41:27 +00:00
issue-17651.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17651.stderr Detect * operator on !Sized expression 2024-08-08 17:35:40 +00:00
issue-17662.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17732.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17734.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17740.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17740.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17746.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17758.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17758.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17771.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17800.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17800.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17816.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17877.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17897.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17904-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17904-2.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-17904.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-17905-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17905-2.stderr recurse into refs when comparing tys for diagnostics 2023-12-07 23:00:46 -05:00
issue-17905.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-17933.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17933.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17954.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17954.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17959.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17959.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-17994.rs Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-17994.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-17999.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-17999.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18058.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18058.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18088.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18107.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18107.stderr More accurate suggestion for -> Box<dyn Trait> or -> impl Trait 2024-07-19 19:39:37 +00:00
issue-18110.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18119.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18119.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18159.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18159.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18173.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18183.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18183.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18188.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18232.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18352.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18353.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18389.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18389.stderr Replace old private-in-public diagnostic with type privacy lints 2023-08-02 13:40:28 +03:00
issue-18423.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-18423.stderr Revert suggestion verbosity change 2024-07-22 22:51:53 +00:00
issue-18446-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18446.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18446.stderr Sort method suggestions by DefPath instead of DefId 2024-03-27 14:02:16 +00:00
issue-18464.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18501.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18514.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18532.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18532.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18539.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18566.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18566.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-18611.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-18611.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-18685.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18711.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18767.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18783.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18783.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18809.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18845.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18859.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18906.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-18913.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18919.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-18919.stderr review comment: change wording 2024-02-01 03:31:03 +00:00
issue-18952.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-18959.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-18959.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-18988.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19001.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19037.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19086.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19086.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19097.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19098.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19100.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19100.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19100.stderr Change bindings_with_variant_name to deny-by-default 2023-01-20 02:26:12 -05:00
issue-19127.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19135.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19293.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19367.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19380.rs WF-check struct field types at construction site 2024-08-05 17:37:12 -07:00
issue-19380.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-19398.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19404.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19479.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19482.rs Detect object safety errors when assoc type is missing 2023-10-30 22:12:07 +00:00
issue-19482.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19499.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19601.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19631.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19632.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19692.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19692.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19734.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19734.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19811-escape-unicode.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19850.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-19922.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19922.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-19982.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-19991.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-19991.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20009.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20055-box-trait.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20055-box-trait.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-20055-box-unsized-array.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20162.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20162.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20174.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20186.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20225.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20225.stderr Use verbose suggestion for changing arg type 2024-07-05 20:58:33 +00:00
issue-20261.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20261.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20313-rpass.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20313.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20313.stderr Bless tests 2024-01-13 12:46:58 -05:00
issue-20389.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20396.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20413.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20413.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-20414.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20427.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20433.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20433.stderr On E0277 be clearer about implicit Sized bounds on type params and assoc types 2024-02-01 03:30:26 +00:00
issue-20454.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20544.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20575.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20644.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-20676.rs Mark format! with must_use hint 2024-07-06 14:24:20 +02:00
issue-20714.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20714.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20772.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20772.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20797.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20803.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20831-debruijn.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-20831-debruijn.stderr Do not rely on names to find lifetimes. 2024-08-22 02:20:05 +00:00
issue-20847.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20939.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-20939.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-20953.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-20971.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21033.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21140.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21160.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21160.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21174-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21174.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21174.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21177.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21177.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21202.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21202.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21245.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21291.rs compiletest: Add a //@ needs-threads directive 2024-03-06 12:35:07 -08:00
issue-21306.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21332.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-21332.stderr Use verbose suggestion for changing arg type 2024-07-05 20:58:33 +00:00
issue-21361.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21384.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21400.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21402.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21449.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21449.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21546.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21546.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21554.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21554.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21600.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21600.stderr Do not set up wrong span for adjustments 2023-07-10 20:09:26 +00:00
issue-21622.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21634.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21655.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21701.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21701.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21763.rs Fix UI tests with dist-vendored dependencies 2024-04-08 15:04:44 -07:00
issue-21763.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-21891.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21909.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-21922.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-21946.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-21946.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-21950.rs Do not create trait object type if missing associated types 2024-11-30 17:05:47 +00:00
issue-21950.stderr Do not create trait object type if missing associated types 2024-11-30 17:05:47 +00:00
issue-21974.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-21974.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-22008.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22034.rs Use the rustc_private libc less in tests 2024-04-15 08:54:11 -04:00
issue-22034.stderr Use parenthetical notation for Fn traits 2024-05-29 22:26:54 +00:00
issue-22036.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22258.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22289.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22289.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22312.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22312.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22346.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22356.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22370.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22370.stderr Better suggestion span for missing type parameter 2024-07-04 02:41:13 +00:00
issue-22403.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22426.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22434.rs Detect object safety errors when assoc type is missing 2023-10-30 22:12:07 +00:00
issue-22434.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22468.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22468.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22471.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22577.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22599.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22599.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22603.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22629.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22638.polonius.stderr Manual find replace updates 2023-11-24 21:04:51 +01:00
issue-22638.rs Gate the type length limit check behind a nightly flag 2024-07-12 21:16:09 -04:00
issue-22638.stderr Gate the type length limit check behind a nightly flag 2024-07-12 21:16:09 -04:00
issue-22644.rs Rip it out 2023-05-01 16:15:13 +08:00
issue-22644.stderr Fix ... in multline code-skips in suggestions 2024-06-20 04:25:17 +00:00
issue-22673.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22684.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22684.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22706.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22706.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22777.rs tests: remove //@ pretty-expanded usages 2024-11-26 02:50:48 +08:00
issue-22781.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22789.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22814.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22872.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22872.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-22874.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-22874.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-22886.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-22886.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-22894.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22992-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-22992.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23024.rs Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-23024.stderr Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-23036.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23041.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23041.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-23046.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23046.stderr Use fn ptr signature instead of {closure@..} in infer error 2024-04-10 00:41:27 +00:00
issue-23073.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23073.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-23173.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23173.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23189.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23189.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-23217.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23217.stderr More accurate suggestions when writing wrong style of enum variant literal 2024-07-18 18:20:35 +00:00
issue-23253.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23253.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-23261.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23281.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23281.stderr review comment: change wording 2024-02-01 03:31:03 +00:00
issue-23311.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23336.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23354-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23354.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23406.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23433.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23442.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23477.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23485.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23485.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-23491.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23543.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23543.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23544.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23544.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-23550.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23589.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23589.stderr review comment: str -> string in messages 2024-03-17 23:35:18 +00:00
issue-23699.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23808.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23891.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23898.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23958.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-23966.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-23966.stderr Use parenthetical notation for Fn traits 2024-05-29 22:26:54 +00:00
issue-23992.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24013.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24013.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-24036.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24036.stderr Reorder fullfillment errors to keep more interesting ones first 2023-10-04 02:04:14 +00:00
issue-24086.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24161.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24227.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24308.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24322.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24322.stderr recurse into refs when comparing tys for diagnostics 2023-12-07 23:00:46 -05:00
issue-24352.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24352.stderr Don't call const normalize in error reporting 2024-09-22 13:55:06 -04:00
issue-24353.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24357.rs Mention when type parameter could be Clone 2024-04-24 22:21:15 +00:00
issue-24357.stderr Mention when type parameter could be Clone 2024-04-24 22:21:15 +00:00
issue-24363.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24363.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24365.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24365.stderr recover primary span label 2023-11-16 17:00:23 +00:00
issue-24389.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24424.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-24424.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-24434.rs tests/ui: prepare some tests for --check-cfg by default 2024-05-04 11:30:38 +02:00
issue-24533.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24589.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24682.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-24682.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-24779.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24819.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-24819.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-24945-repeat-dash-opts.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24947.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-24954.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25076.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25076.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-25089.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25145.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25180.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25185.rs Update test directives for wasm32-wasip1 2024-03-11 09:36:35 -07:00
issue-25279.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25343.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25368.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25368.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-25386.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-25386.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-25394.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25467.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25497.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25515.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25549-multiple-drop.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25579.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25679.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25693.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25746-bool-transmute.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25757.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25810.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-25901.rs Constify Deref and DerefMut 2024-11-24 00:19:47 +00:00
issue-25901.stderr Constify Deref and DerefMut 2024-11-24 00:19:47 +00:00
issue-26056.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26056.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-26093.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26093.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26095.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26127.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26186.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26205.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26217.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26217.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26237.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26237.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26468.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26472.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26472.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26484.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26614.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26619.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26619.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26641.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26646.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26655.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26709.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26802.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26805.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-26812.rs make invalid_type_param_default lint show up in cargo future-compat reports 2024-07-15 22:05:45 +02:00
issue-26812.stderr make invalid_type_param_default lint show up in cargo future-compat reports 2024-07-15 22:05:45 +02:00
issue-26948.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-26948.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-26997.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27008.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-27008.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-27033.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27033.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27042.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27042.stderr Remove note about iteration count in coerce 2024-04-30 12:46:59 +05:30
issue-27054-primitive-binary-ops.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27078.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27078.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-27105.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27240.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27268.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27281.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27340.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-27340.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-27401-dropflag-reinit.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27433.fixed Account for let foo = expr; to suggest const foo: Ty = expr; 2024-07-11 20:39:24 +00:00
issue-27433.rs Account for let foo = expr; to suggest const foo: Ty = expr; 2024-07-11 20:39:24 +00:00
issue-27433.stderr Use verbose style when suggesting changing const with let 2024-07-11 20:39:24 +00:00
issue-27592.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27592.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27639.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27697.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27815.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27815.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27842.rs Tweak tuple indexing suggestion 2023-04-08 21:32:55 +00:00
issue-27842.stderr Improve spans for indexing expressions 2023-08-04 13:17:39 +02:00
issue-27889.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27942.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-27942.stderr Stop sorting via DefIds in region resolution 2024-03-21 16:36:17 +00:00
issue-27949.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-27997.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28105.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28105.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28109.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28109.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28181.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28279.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28344.rs Do not create trait object type if missing associated types 2024-11-30 17:05:47 +00:00
issue-28344.stderr Do not create trait object type if missing associated types 2024-11-30 17:05:47 +00:00
issue-28433.rs Update ui tests involving invalid visibility qualifiers 2023-04-03 22:28:55 -05:00
issue-28433.stderr Improve diagnostic by suggesting to remove visibility qualifier 2024-04-12 12:59:40 +09:00
issue-28472.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28472.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28498-must-work-ex1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28498-must-work-ex2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28498-ugeh-ex1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28550.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28561.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28568.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28568.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-28586.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-28586.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-28600.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28625.rs Always use a colon in //@ normalize-*: headers 2024-07-11 12:23:44 +10:00
issue-28625.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-28776.rs Remove revisions for THIR unsafeck 2024-01-05 09:30:27 +00:00
issue-28776.stderr Stabilize THIR unsafeck 2024-01-05 10:00:59 +00:00
issue-28777.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28828.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28839.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28936.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28971.rs Continue to borrowck even if there were previous errors 2024-02-08 08:10:43 +00:00
issue-28971.stderr More accurate suggestions when writing wrong style of enum variant literal 2024-07-18 18:20:35 +00:00
issue-28983.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-28999.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29030.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29037.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29048.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29053.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29071-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29071.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29092.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29147-rpass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29147.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29147.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-29265.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29276.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29466.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29485.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29516.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29522.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29540.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29663.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29668.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29710.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29723.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29723.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-29740.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29743.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29821.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29857.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-29861.rs Merge check_mod_impl_wf and check_mod_type_wf 2024-03-07 06:27:09 +00:00
issue-29861.stderr Merge check_mod_impl_wf and check_mod_type_wf 2024-03-07 06:27:09 +00:00
issue-29948.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30018-panic.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30081.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30123.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30123.stderr Don't use raw parameter types in find_builder_fn 2024-02-20 02:58:07 +00:00
issue-30236.rs Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-30236.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-30255.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30255.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30371.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30380.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30530.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30589.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-30589.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-30615.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30756.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-30891.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31011.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-31011.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-31260.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31267-additional.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31267.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31299.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31511.rs Use wide pointers consistenly across the compiler 2024-10-04 14:06:48 +02:00
issue-31511.stderr Use wide pointers consistenly across the compiler 2024-10-04 14:06:48 +02:00
issue-31702.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-31769.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-31769.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-31776.rs Allow newly added non_local_definitions lint in tests 2024-02-17 13:59:45 +01:00
issue-31910.rs Avoid silencing relevant follow-up errors 2024-01-09 21:08:16 +00:00
issue-31910.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-32004.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32004.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32008.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32086.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32086.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32292.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32324.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32326.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32326.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-32377.rs Always use a colon in //@ normalize-*: headers 2024-07-11 12:23:44 +10:00
issue-32377.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-32389.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32518.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32655.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32655.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32782.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32782.stderr Bless tests 2024-01-13 12:46:58 -05:00
issue-32797.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32805.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-32950.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32950.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32995-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32995-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32995.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-32995.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33202.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33241.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33287.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33293.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33293.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-33387.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33461.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33504.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33504.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-33525.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33525.stderr recover primary span label 2023-11-16 17:00:23 +00:00
issue-33571.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-33571.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-33687.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-33770.rs Update test directives for wasm32-wasip1 2024-03-11 09:36:35 -07:00
issue-33941.rs suppress fulfillment errors for super projections 2024-03-04 21:06:52 +01:00
issue-33941.stderr Stop inverting expectation in normalization errors 2024-10-16 13:44:56 -04:00
issue-34047.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34047.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-34074.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34209.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34209.stderr More accurate suggestions when writing wrong style of enum variant literal 2024-07-18 18:20:35 +00:00
issue-34229.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34229.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-34334.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34334.stderr Trim output of E0277 in some cases 2024-11-02 03:08:04 +00:00
issue-34349.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-34349.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-34373.rs Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-34373.stderr Dont create trait object if it has errors in it 2024-11-23 23:31:30 +00:00
issue-34418.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34427.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34503.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34503.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-34569.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34571.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34751.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34780.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34796.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-34839.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35139.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-35139.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-35241.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-35241.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-35423.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35570.rs Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-35570.stderr Continue compilation after check_mod_type_wf errors 2024-02-14 11:00:30 +00:00
issue-35600.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35815.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35976.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-35976.unimported.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-35988.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-35988.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-36023.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36036-associated-type-layout.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36075.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36116.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36260.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36278-prefix-nesting.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36299.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36299.stderr Improve the diagnostics for unused generic parameters 2024-02-01 16:18:03 +01:00
issue-36379.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36400.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36400.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-36474.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36744-bitcast-args-if-needed.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36786-resolve-call.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36816.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36836.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-36836.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-36839.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36856.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36936.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-36954.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37051.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37109.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37131.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37131.stderr Make not finding core a fatal error 2024-03-06 18:19:13 -05:00
issue-37510.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37534.rs Actually do validation for poly trait refs with ? modifier 2024-10-30 23:42:50 +00:00
issue-37534.stderr Actually do validation for poly trait refs with ? modifier 2024-10-30 23:42:50 +00:00
issue-37576.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-37576.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-37665.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37665.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-37686.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37725.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37733.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-37884.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-37884.stderr Do not rely on names to find lifetimes. 2024-08-22 02:20:05 +00:00
issue-38160.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38190.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38226.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38381.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38412.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38412.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-38437.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38458.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38458.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-38556.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38727.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38763.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38857.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38857.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38919.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38919.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-38942.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-38954.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-38954.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-38987.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39089.rs Improve error message 2024-07-10 17:15:02 -04:00
issue-39089.stderr Improve error message 2024-07-10 17:15:02 -04:00
issue-39175.rs Update test directives for wasm32-wasip1 2024-03-11 09:36:35 -07:00
issue-39175.stderr Tweak wording of "implemented trait isn't imported" suggestion 2024-02-22 18:05:27 +00:00
issue-39211.rs Bless tests due to extra error reporting due to normalizing types that are not WF 2024-11-27 03:34:58 +00:00
issue-39211.stderr Bless tests due to extra error reporting due to normalizing types that are not WF 2024-11-27 03:34:58 +00:00
issue-39367.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-39367.stderr Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-39548.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39687.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-39687.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-39709.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39808.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39827.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-39848.rs More detail when expecting expression but encountering bad macro argument 2023-11-16 16:19:04 +00:00
issue-39848.stderr Increase accuracy of if condition misparse suggestion 2024-11-16 20:03:31 +00:00
issue-39970.rs Mention fn coercion rules (needs to be expanded) 2023-01-30 21:51:33 +00:00
issue-39970.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-39984.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40000.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40000.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-40136.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40235.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40288-2.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40288-2.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40288.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40288.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-40350.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40408.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40610.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40610.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-40749.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40749.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-40782.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40782.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40782.stderr Make parse error suggestions verbose and fix spans 2024-07-12 03:02:57 +00:00
issue-40827.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40827.stderr Remove detail from label/note that is already available in other note 2024-10-29 16:26:57 +00:00
issue-40845.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40845.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40861.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-40861.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-40883.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-40951.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41053.rs Allow newly added non_local_definitions lint in tests 2024-02-17 13:59:45 +01:00
issue-41139.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41139.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41213.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41229-ref-str.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41229-ref-str.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-41272.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41298.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41479.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41498.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41549.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41549.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41604.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41628.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41677.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41696.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41726.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41726.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41742.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41742.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41744.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41849-variance-req.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41880.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41880.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-41888.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41936-variance-coerce-unsized-cycle.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-41974.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41974.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-41998.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42007.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42106.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42106.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42148.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42210.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42312.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42312.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-42453.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42467.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42552.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-42755.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42755.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42796.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42796.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42880.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-42880.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-42956.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43057.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43205.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43250.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43250.stderr Change wording 2024-04-29 14:53:38 +02:00
issue-43291.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43355.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43355.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-43357.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43420-no-over-suggest.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43420-no-over-suggest.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-43424.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43424.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-43431.rs Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-43431.stderr Rename HIR TypeBinding to AssocItemConstraint and related cleanup 2024-05-30 22:52:33 +02:00
issue-43483.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43692.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43806.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43853.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43910.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43923.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-43988.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-43988.stderr Clarify that Rust is default repr 2023-08-20 13:22:39 +00:00
issue-44023.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-44023.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-44056.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44078.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-44078.stderr Be more accurate about calculating display_col from a BytePos 2024-07-18 20:08:38 +00:00
issue-44216-add-instant.rs Update test directives for wasm32-wasip1 2024-03-11 09:36:35 -07:00
issue-44216-add-system-time.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44216-sub-instant.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44216-sub-system-time.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44239.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44239.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44239.stderr Use verbose style when suggesting changing const with let 2024-07-11 20:39:24 +00:00
issue-44247.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44405.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-44405.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-44730.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-44851.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45425.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45510.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45562.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45562.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45562.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-45697-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45697-1.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-45697.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-45697.stderr Tweak E0597 2023-01-15 19:46:20 +00:00
issue-45730.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45730.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45731.rs Make more of the test suite run on Mac Catalyst 2024-05-28 12:31:33 +02:00
issue-45801.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45801.stderr Add trait diff highlighting logic and use it in E0277 2024-11-02 03:08:04 +00:00
issue-45965.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-45965.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46069.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46101.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46101.stderr Add a note to duplicate diagnostics 2023-10-05 01:04:41 +00:00
issue-46302.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46302.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46311.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46311.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46332.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46332.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46471-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46471-1.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46472.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46472.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46604.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46604.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46756-consider-borrowing-cast-or-binexpr.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46756-consider-borrowing-cast-or-binexpr.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46756-consider-borrowing-cast-or-binexpr.stderr Make suggest_deref_or_ref return a multipart suggestion 2023-05-08 03:42:21 +00:00
issue-46771.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46771.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-46855.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46964.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-46983.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-46983.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-47073-zero-padded-tuple-struct-indices.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47073-zero-padded-tuple-struct-indices.stderr recover primary span label 2023-11-16 17:00:23 +00:00
issue-47094.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47094.stderr bump conflicting_repr_hints lint to be shown in dependencies 2024-08-06 11:17:26 +02:00
issue-47184.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47184.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-47309.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47364.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47377.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47377.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-47380.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47380.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-47486.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47486.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-47638.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47673.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47703-1.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47703-tuple.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47703.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-47715.rs Split note, fix const/static impl trait error 2024-01-07 18:00:03 +00:00
issue-47715.stderr Split note, fix const/static impl trait error 2024-01-07 18:00:03 +00:00
issue-47722.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48006.rs distinguish overflow and unimplemented in Step::steps_between 2024-11-21 15:49:55 -08:00
issue-48131.rs Remove revisions for THIR unsafeck 2024-01-05 09:30:27 +00:00
issue-48131.stderr Remove revisions for THIR unsafeck 2024-01-05 09:30:27 +00:00
issue-48132.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48159.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-48276.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-48276.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-48364.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-48364.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-48728.current.stderr elaborate unknowable goals 2024-07-10 16:16:48 +02:00
issue-48728.rs stabilize -Znext-solver=coherence 2024-10-15 13:11:00 +02:00
issue-48838.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-48838.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-48984.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49298.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49544.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49632.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49824.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49824.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-49854.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49919.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49919.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-49934-errors.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49934-errors.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49934.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49934.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-49955.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-49973.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50187.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50403.rs Migrate most of rustc_builtin_macros to diagnostic impls 2023-04-10 21:16:53 +01:00
issue-50403.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50411.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50415.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50442.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50471.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50518.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50571.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50571.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50571.stderr Update tests 2024-02-07 10:42:01 +08:00
issue-50581.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50581.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50582.rs Get rid of HIR const checker 2024-11-22 02:32:26 +00:00
issue-50582.stderr Get rid of HIR const checker 2024-11-22 02:32:26 +00:00
issue-50585.rs Get rid of HIR const checker 2024-11-22 02:32:26 +00:00
issue-50585.stderr Get rid of HIR const checker 2024-11-22 02:32:26 +00:00
issue-50600.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50600.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50618.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50618.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50688.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50688.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50714-1.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50714-1.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50714.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50714.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50761.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-50781.rs Make WHERE_CLAUSES_OBJECT_SAFETY a regular object safety violation 2024-06-03 09:49:04 -04:00
issue-50781.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-50802.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-50802.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-50811.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51022.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51022.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51044.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51102.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51102.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51116.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51116.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51154.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51154.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51515.rs tweak "make mut" spans when assigning to locals 2023-05-05 22:40:04 +12:00
issue-51515.stderr tweak "make mut" spans when assigning to locals 2023-05-05 22:40:04 +12:00
issue-51632-try-desugar-incompatible-types.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51632-try-desugar-incompatible-types.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51655.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51714.rs hir: Add Become expression kind 2023-06-26 08:56:32 +00:00
issue-51714.stderr hir: Add Become expression kind 2023-06-26 08:56:32 +00:00
issue-51798.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51874.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-51874.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-51907.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-51947.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-52049.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52049.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-52126-assign-op-invariance.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52126-assign-op-invariance.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-52262.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52262.stderr Suggest .clone() in some move errors 2024-04-11 16:41:41 +00:00
issue-52489.rs use backticks instead of single quotes when reporting "use of unstable library feature" 2024-11-03 13:55:52 -08:00
issue-52489.stderr use backticks instead of single quotes when reporting "use of unstable library feature" 2024-11-03 13:55:52 -08:00
issue-52533.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52533.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-52717.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-52717.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-53251.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-53251.stderr Revert suggestion verbosity change 2024-07-22 22:51:53 +00:00
issue-53275.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-53300.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-53300.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-53333.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-53348.rs Modify primary span label for E0308 2023-01-30 20:12:19 +00:00
issue-53348.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-53419.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-53568.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-53728.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-53843.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-54044.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54044.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54062.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-54062.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-54094.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-54410.rs Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-54410.stderr Update tests for hidden references to mutable static 2024-09-13 14:10:56 +03:00
issue-54462-mutable-noalias-correctness.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-54477-reduced-2.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-54696.rs Allow fn pointers comparisons lint in UI tests 2024-12-02 18:43:37 +01:00
issue-55376.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-55380.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-55380.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55587.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55587.stderr Update tests for new TRPL chapter order 2024-11-23 08:57:25 -07:00
issue-55731.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-55731.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-56128.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56175.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56175.stderr Deduplicate some logic and reword output 2024-02-22 18:05:28 +00:00
issue-56199.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56199.stderr Deduplicate more sized errors on call exprs 2024-01-24 02:53:15 +00:00
issue-56229.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56237.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56806.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56806.stderr Arbitrary self types v2: use Receiver trait 2024-12-11 11:59:12 +00:00
issue-56835.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56835.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-56870.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56943.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-56943.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-57156.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57162.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57198-pass.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57271.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57271.stderr Fix ... in multline code-skips in suggestions 2024-06-20 04:25:17 +00:00
issue-57399-self-return-impl-trait.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57781.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-57924.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-57924.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-58212.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-58375-monomorphize-default-impls.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-58463.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-58712.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-58712.stderr Render missing generics suggestion verbosely 2023-01-12 22:04:30 +00:00
issue-58734.rs UI tests: Rename "object safe" to "dyn compatible" 2024-10-10 01:13:29 +02:00
issue-58734.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-58857.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-58857.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-59020.rs compiletest: Add a //@ needs-threads directive 2024-03-06 12:35:07 -08:00
issue-59326.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-59488.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-59488.stderr Use the FnPtr trait to avoid implementing common traits via macros 2023-03-27 12:19:52 +00:00
issue-59494.rs remove sub_relations from infcx, recompute in diagnostics 2024-02-22 17:29:25 +01:00
issue-59494.stderr remove sub_relations from infcx, recompute in diagnostics 2024-02-22 17:29:25 +01:00
issue-59756.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-59756.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-59756.stderr Manual find replace updates 2023-11-24 21:04:51 +01:00
issue-60218.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-60218.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-60622.rs diagnostics: remove inconsistent English article "this" from E0107 2023-02-23 10:27:06 -07:00
issue-60622.stderr Revert suggestion verbosity change 2024-07-22 22:51:53 +00:00
issue-60989.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-60989.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61106.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61106.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-61108.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61108.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-61475.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-61623.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-61623.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-61894.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-62480.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-62480.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-63983.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-63983.stderr Suggest the struct variant pattern syntax on usage of unit variant pattern for a struct variant 2024-08-28 22:55:57 +09:00
issue-64430.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-64430.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-64559.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64559.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-64593.rs Stabilize generic NonZero. 2024-04-22 18:48:47 +02:00
issue-64792-bad-unicode-ctor.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-64792-bad-unicode-ctor.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-65131.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-65131.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-65230.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-65230.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-65462.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-66308.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-66353.rs Remove unnecessary select_obligations_where_possible and redundant errors 2023-08-26 19:35:54 +00:00
issue-66353.stderr Point out if a local trait has no implementations 2023-09-10 21:20:36 +00:00
issue-66667-function-cmp-cycle.rs Propagate expected return type instead of real return type in check_binop 2023-03-09 17:24:07 +00:00
issue-66667-function-cmp-cycle.stderr Point to where missing return type should go 2023-10-04 21:09:54 +00:00
issue-66702-break-outside-loop-val.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-66702-break-outside-loop-val.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-66706.rs Make parse_seq_to_before_tokens take expected/nonexpected tokens, use in parse_precise_capturing_syntax 2024-06-17 22:35:25 -04:00
issue-66706.stderr On implicit Sized bound on fn argument, point at type instead of pattern 2024-09-27 00:45:02 +00:00
issue-66923-show-error-for-correct-call.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-66923-show-error-for-correct-call.stderr Trim output of E0277 in some cases 2024-11-02 03:08:04 +00:00
issue-67039-unsound-pin-partialeq.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-67039-unsound-pin-partialeq.stderr Stop inverting expectation in normalization errors 2024-10-16 13:44:56 -04:00
issue-67535.rs Silence some follow-up errors on trait impls in case the trait has conflicting or otherwise incoherent impls 2024-04-09 10:23:58 +00:00
issue-67535.stderr Make new information notes instead of labels 2024-09-26 17:17:11 +00:00
issue-67552.polonius.stderr Manual find replace updates 2023-11-24 21:04:51 +01:00
issue-67552.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-67552.stderr Adjust the ignore-compare-mode-next-solver for hangs 2023-12-18 23:55:47 +00:00
issue-68010-large-zst-consts.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-68696-catch-during-unwind.rs Detect unused structs which derived Default 2024-06-25 23:29:44 +08:00
issue-68951.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-69130.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69130.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69306.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69306.stderr Tweak wording of type errors involving type params 2023-10-18 23:53:18 +00:00
issue-69455.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69455.stderr diagnostics: update test cases to refer to assoc fn with self as method 2023-02-22 08:40:47 -07:00
issue-69602-type-err-during-codegen-ice.rs Don't ICE when codegen_select returns ambiguity in new solver 2024-04-25 11:49:12 -04:00
issue-69602-type-err-during-codegen-ice.stderr Don't ICE when codegen_select returns ambiguity in new solver 2024-04-25 11:49:12 -04:00
issue-69683.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-69683.stderr Specify what 'this' actually is 2023-02-21 05:21:07 +00:00
issue-70381.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-70381.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-70673.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-70724-add_type_neq_err_label-unwrap.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-70724-add_type_neq_err_label-unwrap.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-70746.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-71406.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-71406.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-72002.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-72076.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-72076.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-72278.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-72278.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-72839-error-overflow.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-72839-error-overflow.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-72933-match-stack-overflow.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-73112.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-73112.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-73229.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-74082.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-74082.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-74564-if-expr-stack-overflow.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-75283.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-75283.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-75704.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-76042.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-76191.rs Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
issue-76191.stderr Always evaluate free constants and statics, even if previous errors occurred 2024-02-19 22:11:13 +00:00
issue-77919.rs Work around the fact that check_mod_type_wf may spuriously return ErrorGuaranteed, even if that error is only emitted by check_modwitem_types 2023-10-25 12:04:54 +00:00
issue-77919.stderr Work around the fact that check_mod_type_wf may spuriously return ErrorGuaranteed, even if that error is only emitted by check_modwitem_types 2023-10-25 12:04:54 +00:00
issue-78192.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-78622.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-78622.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-78957.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-78957.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-80607.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-80607.stderr Tweak "field not found" suggestion when giving struct literal for tuple struct type 2024-07-18 18:20:35 +00:00
issue-81584.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-81584.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-81584.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-81918.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-83048.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-83048.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-85461.rs Rename directive needs-profiler-support to needs-profiler-runtime 2024-10-09 20:58:27 +11:00
issue-86756.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-86756.stderr Compiler: Rename "object safe" to "dyn compatible" 2024-09-25 13:26:48 +02:00
issue-87199.rs Bless test fallout (duplicate diagnostics) 2024-03-20 13:00:34 -04:00
issue-87199.stderr Bless test fallout (duplicate diagnostics) 2024-03-20 13:00:34 -04:00
issue-87490.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-87490.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-87707.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-87707.run.stderr Change default panic handler message format. 2023-07-29 11:42:50 +02:00
issue-88150.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-91489.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-92741.fixed [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-92741.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-92741.stderr Add run-rustfix to tests/ui/issues/issue-92741.rs 2023-02-06 15:34:47 +01:00
issue-98299.rs Taint infcx when reporting errors 2024-06-19 04:41:56 +00:00
issue-98299.stderr Const generic parameters aren't bounds, even if we end up erroring because of the bound that binds the parameter's type 2024-06-19 14:58:29 +00:00
issue-99838.rs [AUTO-GENERATED] Migrate ui tests from // to //@ directives 2024-02-16 20:02:50 +00:00
issue-102964.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-102964.stderr Show number in error message even for one error 2023-11-24 19:15:52 +01:00
issue-106755.rs Remove suspicious auto trait lint 2024-02-19 17:41:48 -03:00
issue-106755.stderr Remove suspicious auto trait lint 2024-02-19 17:41:48 -03:00
issue-pr29383.rs Move /src/test to /tests 2023-01-11 09:32:08 +00:00
issue-pr29383.stderr Move /src/test to /tests 2023-01-11 09:32:08 +00:00