rust/tests/ui/nll/issue-55825-const-fn.rs

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

9 lines
194 B
Rust
Raw Normal View History

// Regression test for issue #55825
// Tests that we don't emit a spurious warning in NLL mode
// check-pass
const fn no_dyn_trait_ret() -> &'static dyn std::fmt::Debug { &() }
fn main() { }