Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
error-codes
/
E0199.rs
blob: 2421bf0a55f6595016002034af2001396969bec5 [
file
] [
log
] [
blame
]
#![
feature
(
negative_impls
)]
struct
Foo
;
trait
Bar
{
}
unsafe
impl
Bar
for
Foo
{
}
//~ ERROR implementing the trait `Bar` is not unsafe [E0199]
fn
main
()
{
}