aboutsummaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
authorMartin Odersky <odersky@gmail.com>2016-12-03 12:53:10 +0100
committerMartin Odersky <odersky@gmail.com>2016-12-17 18:34:27 +0100
commitfd2c24c3159cefa583889a176f31d1e2325fe7e6 (patch)
tree2291e9ecee03b130f50e3c3a4d9660d95bca2723 /docs
parent8450556080c5fd8f8553bec4f39ea08fbb05c9d2 (diff)
downloaddotty-fd2c24c3159cefa583889a176f31d1e2325fe7e6.tar.gz
dotty-fd2c24c3159cefa583889a176f31d1e2325fe7e6.tar.bz2
dotty-fd2c24c3159cefa583889a176f31d1e2325fe7e6.zip
Add syntax for implicit functions
Diffstat (limited to 'docs')
-rw-r--r--docs/syntax-summary.txt4
1 files changed, 2 insertions, 2 deletions
diff --git a/docs/syntax-summary.txt b/docs/syntax-summary.txt
index 04e149de6..fe0ebc89c 100644
--- a/docs/syntax-summary.txt
+++ b/docs/syntax-summary.txt
@@ -95,8 +95,8 @@ grammar.
| [id '.'] `super' [ClassQualifier] `.' id
ClassQualifier ::= `[' id `]'
- Type ::= FunArgTypes `=>' Type Function(ts, t)
- | HkTypeParamClause `=>' Type TypeLambda(ps, t)
+ Type ::= [`implicit'] FunArgTypes `=>' Type Function(ts, t)
+ | HkTypeParamClause `=>' Type TypeLambda(ps, t)
| InfixType
FunArgTypes ::= InfixType
| `(' [ FunArgType {`,' FunArgType } ] `)'