2021-01-14 00:00:00 +00:00
|
|
|
// Check that the layout of a generator is available when auxiliary crate
|
|
|
|
// is compiled with --emit metadata.
|
|
|
|
//
|
|
|
|
// Regression test for #80998.
|
|
|
|
//
|
|
|
|
// aux-build:metadata-sufficient-for-layout.rs
|
|
|
|
|
2021-07-26 20:01:16 +00:00
|
|
|
#![feature(type_alias_impl_trait, rustc_attrs)]
|
2021-01-14 00:00:00 +00:00
|
|
|
#![feature(generator_trait)]
|
|
|
|
|
|
|
|
extern crate metadata_sufficient_for_layout;
|
|
|
|
|
|
|
|
use std::ops::Generator;
|
|
|
|
|
|
|
|
type F = impl Generator<(), Yield = (), Return = ()>;
|
|
|
|
|
|
|
|
// Static queries the layout of the generator.
|
|
|
|
static A: Option<F> = None;
|
|
|
|
|
2021-07-16 13:06:26 +00:00
|
|
|
fn f() -> F {
|
|
|
|
metadata_sufficient_for_layout::g()
|
|
|
|
}
|
2021-01-14 00:00:00 +00:00
|
|
|
|
2021-03-12 12:02:29 +00:00
|
|
|
#[rustc_error]
|
2021-07-16 13:06:26 +00:00
|
|
|
fn main() {} //~ ERROR
|