Sign in
fuchsia
/
third_party
/
rust
/
10732e14f4ee6e462170f883c79fb90acf3ddc2c
/
.
/
src
/
tools
/
clippy
/
tests
/
ui
/
crashes
/
ice-1969.rs
blob: 813972a046f7524ffc2539352991fbda6e9f3214 [
file
] [
log
] [
blame
]
//@ check-pass
// Test for https://github.com/rust-lang/rust-clippy/issues/1969
fn
main
()
{}
pub
trait
Convert
{
type
Action
:
From
<*
const
f64
>;
fn
convert
(
val
:
*
const
f64
)
->
Self
::
Action
{
val
.
into
()
}
}