Sign in
fuchsia
/
third_party
/
github.com
/
rust-lang
/
rust
/
refs/heads/upstream/master
/
.
/
tests
/
crashes
/
137187.rs
blob: 05cfb2b10e109ef569a59471c4ddf2cac89f1611 [
file
] [
log
] [
blame
] [
edit
]
//@ known-bug: #137187
use
std
::
ops
::
Add
;
trait
A where
*
const
Self
:
Add
,
{
const
fn
b
(
c
:
*
const
Self
)
->
<*
const
Self
as
Add
>::
Output
{
c
+
c
}
}