diff options
| author | Guillaume Gomez <guillaume1.gomez@gmail.com> | 2016-11-20 15:00:05 +0100 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2016-11-20 15:00:05 +0100 |
| commit | 53cead4e8bfc0c3d1bda8e20d39cea75983a6e0e (patch) | |
| tree | 8c6877a9506da7f6c22e13318482fedc4719a4a3 | |
| parent | 99433f0bfe6e8528e1035f5d49cc126b5c989149 (diff) | |
| parent | 4ccc0628afaebee3793a846682d2f6275d586f2c (diff) | |
| download | rust-53cead4e8bfc0c3d1bda8e20d39cea75983a6e0e.tar.gz rust-53cead4e8bfc0c3d1bda8e20d39cea75983a6e0e.zip | |
Rollup merge of #37876 - birkenfeld:patch-1, r=apasel422
reference: fix duplicate bullet points in feature list
| -rw-r--r-- | src/doc/reference.md | 17 |
1 files changed, 9 insertions, 8 deletions
diff --git a/src/doc/reference.md b/src/doc/reference.md index 0596e476d5f..4fbe5183967 100644 --- a/src/doc/reference.md +++ b/src/doc/reference.md @@ -2474,18 +2474,19 @@ The currently implemented features of the reference compiler are: internally without imposing on callers (i.e. making them behave like function calls in terms of encapsulation). -* - `default_type_parameter_fallback` - Allows type parameter defaults to - influence type inference. -* - `stmt_expr_attributes` - Allows attributes on expressions. +* `default_type_parameter_fallback` - Allows type parameter defaults to + influence type inference. -* - `type_ascription` - Allows type ascription expressions `expr: Type`. +* `stmt_expr_attributes` - Allows attributes on expressions. -* - `abi_vectorcall` - Allows the usage of the vectorcall calling convention - (e.g. `extern "vectorcall" func fn_();`) +* `type_ascription` - Allows type ascription expressions `expr: Type`. -* - `abi_sysv64` - Allows the usage of the system V AMD64 calling convention - (e.g. `extern "sysv64" func fn_();`) +* `abi_vectorcall` - Allows the usage of the vectorcall calling convention + (e.g. `extern "vectorcall" func fn_();`) + +* `abi_sysv64` - Allows the usage of the system V AMD64 calling convention + (e.g. `extern "sysv64" func fn_();`) If a feature is promoted to a language feature, then all existing programs will start to receive compilation warnings about `#![feature]` directives which enabled |
