Skip to content

Commit f0e34c9

Browse files
authored
Rollup merge of rust-lang#63285 - Mark-Simulacrum:rm-await-origin, r=Centril
Remove leftover AwaitOrigin This was missed in PR rust-lang#62293.
2 parents 3619648 + fbf93d4 commit f0e34c9

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed

src/libsyntax/ast.rs

-9
Original file line numberDiff line numberDiff line change
@@ -1284,15 +1284,6 @@ pub enum Movability {
12841284
Movable,
12851285
}
12861286

1287-
/// Whether an `await` comes from `await!` or `.await` syntax.
1288-
/// FIXME: this should be removed when support for legacy `await!` is removed.
1289-
/// https://github.com/rust-lang/rust/issues/60610
1290-
#[derive(Clone, PartialEq, RustcEncodable, RustcDecodable, Debug, Copy)]
1291-
pub enum AwaitOrigin {
1292-
FieldLike,
1293-
MacroLike,
1294-
}
1295-
12961287
pub type Mac = Spanned<Mac_>;
12971288

12981289
/// Represents a macro invocation. The `Path` indicates which macro

0 commit comments

Comments
 (0)