| commit | 59b7edea2737cdbbf86ff06f23d416cd58111e77 | [log] [tgz] |
|---|---|---|
| author | David Tolnay <dtolnay@gmail.com> | Mon Mar 16 00:30:23 2020 -0700 |
| committer | David Tolnay <dtolnay@gmail.com> | Mon Mar 16 00:36:15 2020 -0700 |
| tree | def3c9fca9e0bd28495e702be9d95a0f025a781e | |
| parent | 30d214cca2f6cdd0f53d7548fbbd4439c314d7df [diff] [blame] |
Parse Result return type
diff --git a/syntax/mod.rs b/syntax/mod.rs index 8c7e5ca..5b51648 100644 --- a/syntax/mod.rs +++ b/syntax/mod.rs
@@ -50,6 +50,7 @@ pub receiver: Option<Receiver>, pub args: Vec<Var>, pub ret: Option<Type>, + pub throws: bool, pub semi_token: Token![;], }