Sign in
rust
/
rust
/
refs/heads/try-perf
/
.
/
tests
/
pretty
/
hir-impl-restriction.rs
blob: b9dbe9864003747a80073b4ae239ca450982a590 [
file
] [
edit
]
#![
feature
(
impl_restriction
)]
//@ pretty-compare-only
//@ pretty-mode:hir
//@ pp-exact:hir-impl-restriction.pp
impl
(
crate
)
trait
T1
{}
impl
(
self
)
trait
T2
{}
mod
a
{
impl
(
in crate
::
a
)
trait
T3
{}
impl
(
super
)
trait
T4
{}
}