rust/tests/ui/impl-trait/reveal-during-codegen.rs

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

13 lines
216 B
Rust
Raw Permalink Normal View History

//@ build-pass
//@ revisions: current next
//@ ignore-compare-mode-next-solver (explicit revisions)
2023-12-14 06:11:28 -06:00
//@[next] compile-flags: -Znext-solver
fn test() -> Option<impl Sized> {
Some("")
}
fn main() {
test();
}