remove erroneous E0045 annotation
The old parse code kept going even though it wasn't
supposed to, leading to an E0045 ("feature not allowed
on beta") printout
This commit is contained in:
parent
6236ee14af
commit
4501e5a52f
1 changed files with 1 additions and 1 deletions
|
|
@ -458,7 +458,7 @@ Rust only supports variadic parameters for interoperability with C code in its
|
|||
FFI. As such, variadic parameters can only be used with functions which are
|
||||
using the C ABI. Examples of erroneous code:
|
||||
|
||||
```compile_fail,E0045
|
||||
```compile_fail
|
||||
#![feature(unboxed_closures)]
|
||||
|
||||
extern "rust-call" { fn foo(x: u8, ...); }
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue