blob: 0c0514dd9d531b3fd7756c69a6f33cb7ca8f7465 [file] [log] [blame]
// Regression test for issue #89938.
// compile-flags: --crate-type=lib
// known-bug: #103507
// failure-status: 101
// normalize-stderr-test "note: .*\n\n" -> ""
// normalize-stderr-test "thread 'rustc' panicked.*\n.*\n" -> ""
// normalize-stderr-test "(error: internal compiler error: [^:]+):\d+:\d+: " -> "$1:LL:CC: "
// rustc-env:RUST_BACKTRACE=0
#![feature(const_precise_live_drops)]
pub const fn f() {
let _: Option<String> = None;
let _: &'static Option<String> = &None;
}