summaryrefslogtreecommitdiffstats
path: root/src/test/ui/dyn-star/return.rs
blob: fa3d8d7d5064cc2a893fb2554ecbff4fb7e97a1d (plain)
1
2
3
4
5
6
7
8
9
10
// check-pass

#![feature(dyn_star)]
//~^ WARN the feature `dyn_star` is incomplete and may not be safe to use and/or cause compiler crashes

fn _foo() -> dyn* Unpin {
    4usize
}

fn main() {}