blob: deb355959e7d2e7a91cd60eb2c8248d3521643e8 [file] [edit]
#![crate_name = "c"]
#![feature(impl_restriction)]
//@ matches c/trait.Foo.html '//*[@class="impl-restriction"]' \
// 'This trait cannot be implemented outside c.$'
//@ has c/trait.Foo.html '//*[@class="impl-restriction"]//code' 'c'
pub impl(crate) trait Foo {}
pub mod inner {
//@ matches c/inner/trait.Bar.html '//*[@class="impl-restriction"]' \
// 'This trait cannot be implemented outside c.$'
//@ has c/inner/trait.Bar.html '//*[@class="impl-restriction"]//code' 'c'
pub impl(self) trait Bar {}
}