Skip to content

Commit

Permalink
Reexpose stability hole in the presence of feature gates
Browse files Browse the repository at this point in the history
  • Loading branch information
oli-obk committed Aug 22, 2018
1 parent bb78426 commit bd6ae6a
Show file tree
Hide file tree
Showing 9 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion src/libsyntax/feature_gate.rs
Original file line number Diff line number Diff line change
Expand Up @@ -225,7 +225,7 @@ declare_features! (
(active, const_compare_raw_pointers, "1.27.0", Some(53020), None),

// Allows panicking during const eval (produces compile-time errors)
(active, const_panic, "1.29.0", Some(51999), None),
(active, const_panic, "1.30.0", Some(51999), None),

// Allows using #[prelude_import] on glob `use` items.
//
Expand Down
File renamed without changes.
File renamed without changes.
Original file line number Diff line number Diff line change
Expand Up @@ -28,6 +28,8 @@ const X: () = unimplemented!();

#[lang = "eh_personality"]
fn eh() {}
#[lang = "eh_unwind_resume"]
fn eh_unwind_resume() {}

#[panic_implementation]
fn panic(_info: &PanicInfo) -> ! {
Expand Down

0 comments on commit bd6ae6a

Please sign in to comment.