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.

6 lines
92 B
Rust
Raw Normal View History

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