mirror of
https://git.proxmox.com/git/rustc
synced 2025-08-18 09:06:27 +00:00
9 lines
195 B
Rust
9 lines
195 B
Rust
// 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() { }
|