Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 0 additions & 10 deletions tests/ui/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -1000,12 +1000,6 @@ Tests on lifetimes on objects, such as a lifetime bound not being able to be ded

**FIXME**: Just a more specific subset of `ui/lifetimes`.

## `tests/ui/obsolete-in-place/`

Contains a single test. Check that we reject the ancient Rust syntax `x <- y` and `in(BINDING) {}` construct.

**FIXME**: Definitely should be rehomed, maybe to `tests/ui/deprecation/`.

## `tests/ui/offload`

Exercises the offload feature.
Expand All @@ -1023,10 +1017,6 @@ Exercises the [`std::mem::offset_of` macro](https://doc.rust-lang.org/beta/std/m

Exercises the `#[rustc_on_unimplemented]`.

## `tests/ui/operator-recovery/`

**FIXME**: Probably move under `tests/ui/binop/` or `tests/ui/parser/`.

## `tests/ui/or-patterns/`

Exercises `||` and `|` in patterns.
Expand Down
File renamed without changes.
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
error: unexpected token: `<-`
--> $DIR/bad.rs:5:7
--> $DIR/removed-syntax-obsolete-in-place.rs:5:7
|
LL | x <- y;
| ^^
Expand All @@ -10,7 +10,7 @@ LL | x < - y;
| +

error: expected expression, found keyword `in`
--> $DIR/bad.rs:10:5
--> $DIR/removed-syntax-obsolete-in-place.rs:10:5
|
LL | in(foo) { bar };
| ^^ expected expression
Expand Down
Loading