Sign in
rust
/
rust
/
e8a63124746761e743d69ea510194de2ada4034f
/
.
/
tests
/
ui
/
traits
/
const-traits
/
project.rs
blob: 4750591b2babec75871be6015e1ae702bc8b6f9e [
file
]
//@ check-pass
//@ compile-flags: -Znext-solver
#![
feature
(
const_trait_impl
)]
pub
const
trait
Owo
<
X
=
<
Self
as
Uwu
>::
T
>
{}
pub
const
trait
Uwu
:
Owo
{
type
T
;
}
fn
main
()
{}