rust/tests/ui/impl-trait/precise-capturing/auxiliary/foreign.rs

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

7 lines
130 B
Rust
Raw Normal View History

//@ edition: 2024
//@ compile-flags: -Zunstable-options
use std::fmt::Display;
pub fn hello(x: &Vec<i32>) -> impl Display { 0 }