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