Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
consts
/
precise-drop-with-promoted.rs
blob: 633df2b206791b645e03413fb51be291bacadcc5 [
file
] [
log
] [
blame
] [
edit
]
// Regression test for issue #89938.
//@ check-pass
//@ compile-flags: --crate-type=lib
#![
feature
(
const_precise_live_drops
)]
pub
const
fn
f
()
{
let
_
:
Option
<
String
>
=
None
;
let
_
:
&
'
static
Option
<
String
>
=
&
None
;
}