commit | bc7d7d9877c305808eb6f27fb3da152ef5fc9fb6 | [log] [tgz] |
---|---|---|
author | David Tolnay <dtolnay@gmail.com> | Sat Jun 03 20:54:05 2017 -0700 |
committer | David Tolnay <dtolnay@gmail.com> | Sat Jun 03 20:56:57 2017 -0700 |
tree | b1cf75a7f33cb9209073acaedc8b0b4dc793f67d | |
parent | b21bb0cecbb30e07d7c017706f12544149c101df [diff] [blame] |
Fix type inference snafu with synom map
diff --git a/src/ty.rs b/src/ty.rs index 1bb710f..e767852 100644 --- a/src/ty.rs +++ b/src/ty.rs
@@ -556,7 +556,7 @@ }) ) | - map!(syn!(Self_), |s: Self_| (None, s.into())) + map!(syn!(Self_), |s| (None, s.into())) )); impl Synom for ParenthesizedParameterData {