Sign in
fuchsia
/
third_party
/
rust
/
upstream/beta
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-9414.rs
blob: 2341c99b2390339f1b938d8abb2c77513bd49a88 [
file
]
//@ check-pass
#![
warn
(
clippy
::
result_large_err
)]
trait
T
{}
fn
f
(
_
:
&
u32
)
->
Result
<(),
*
const
(
dyn
'
_
+
T
)>
{
Ok
(())
}
fn
main
()
{}