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:
Niko Matsakis 2016-11-01 13:04:09 -04:00
parent 6236ee14af
commit 4501e5a52f

View file

@ -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, ...); }