blob: 8aaa1981360873b505d2f938536fd949f382702f (
plain)
1
2
3
4
5
6
7
8
|
// 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() { }
|