Sign in
chromium
/
external
/
github.com
/
rust-lang
/
rust
/
ab1f382ca8fa4a4c0dde58679207f9bec394fa0e
/
.
/
tests
/
ui
/
traits
/
const-traits
/
impl-with-default-fn-fail.rs
blob: 6df9696f2cbd79a6a9c30e55ffdcc5affd90fffb [
file
] [
log
] [
blame
]
#![
feature
(
const_trait_impl
)]
#[
const_trait
]
trait
Tr
{
fn
req
(&
self
);
fn
default
()
{}
}
struct
S
;
impl
const
Tr
for
u16
{
fn
default
()
{}
}
//~^^ ERROR not all trait items implemented
fn
main
()
{}