diff options
| author | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-12-01 11:07:49 +0100 |
|---|---|---|
| committer | Mazdak Farrokhzad <twingoow@gmail.com> | 2019-12-12 17:54:48 +0100 |
| commit | 7672bff3780ef0e7ba5313bf23644465644e19e6 (patch) | |
| tree | 9b7530f48523da9cfb6407ca8aed4fba155f5241 /src/libsyntax | |
| parent | 10270bcd30d1d85a003412e597e367f2e7c89942 (diff) | |
| download | rust-7672bff3780ef0e7ba5313bf23644465644e19e6.tar.gz rust-7672bff3780ef0e7ba5313bf23644465644e19e6.zip | |
Unify associated function parsing.
Diffstat (limited to 'src/libsyntax')
| -rw-r--r-- | src/libsyntax/ast.rs | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/libsyntax/ast.rs b/src/libsyntax/ast.rs index dd8a7fa8665..5866f9db078 100644 --- a/src/libsyntax/ast.rs +++ b/src/libsyntax/ast.rs @@ -1640,6 +1640,7 @@ pub enum AssocItemKind { Const(P<Ty>, Option<P<Expr>>), /// An associated function. + /// FIXME(Centril): Rename to `Fn`. Method(FnSig, Option<P<Block>>), /// An associated type. |
