Skip to content

Commit 4501e5a

Browse files
committed
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
1 parent 6236ee1 commit 4501e5a

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/librustc_typeck/diagnostics.rs

+1-1
Original file line numberDiff line numberDiff line change
@@ -458,7 +458,7 @@ Rust only supports variadic parameters for interoperability with C code in its
458458
FFI. As such, variadic parameters can only be used with functions which are
459459
using the C ABI. Examples of erroneous code:
460460
461-
```compile_fail,E0045
461+
```compile_fail
462462
#![feature(unboxed_closures)]
463463
464464
extern "rust-call" { fn foo(x: u8, ...); }

0 commit comments

Comments
 (0)