diff options
| author | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2021-02-21 16:32:38 +0300 |
|---|---|---|
| committer | Vadim Petrochenkov <vadim.petrochenkov@gmail.com> | 2021-03-14 18:10:29 +0300 |
| commit | a4cc3cae04525c7fd6edc8a4301a4034c82fdfad (patch) | |
| tree | 3b7942dd5f982fcc41cf3d88b2a6911204e2df32 /compiler/rustc_ast/src | |
| parent | 84c08f82b46986fcd5cbd1a637582bd1325fa970 (diff) | |
| download | rust-a4cc3cae04525c7fd6edc8a4301a4034c82fdfad.tar.gz rust-a4cc3cae04525c7fd6edc8a4301a4034c82fdfad.zip | |
expand: Resolve and expand inner attributes on out-of-line modules
Diffstat (limited to 'compiler/rustc_ast/src')
| -rw-r--r-- | compiler/rustc_ast/src/ast.rs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/compiler/rustc_ast/src/ast.rs b/compiler/rustc_ast/src/ast.rs index d6297addc0c..a934bdd7980 100644 --- a/compiler/rustc_ast/src/ast.rs +++ b/compiler/rustc_ast/src/ast.rs @@ -2297,7 +2297,7 @@ impl FnRetTy { } } -#[derive(Clone, PartialEq, Encodable, Decodable, Debug)] +#[derive(Clone, Copy, PartialEq, Encodable, Decodable, Debug)] pub enum Inline { Yes, No, |
