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
}
}