blob: 58db7859438c71addb0e7252ea60d77287be6e42 [file] [log] [blame]
// This is a regression test for https://github.com/rust-lang/rust/issues/118047
//@ build-pass
//@ compile-flags: -Zmir-opt-level=0 -Zmir-enable-passes=+DataflowConstProp
#![crate_type = "lib"]
pub struct State {
inner: bool
}
pub fn make() -> State {
State {
inner: true
}
}