Sign in
android
/
toolchain
/
rustc
/
refs/heads/main
/
.
/
tests
/
ui
/
rfcs
/
rfc-2632-const-trait-impl
/
impl-with-default-fn-fail.rs
blob: 49741ca24c7e7faaaa8d320044e43d52ea94a607 [
file
] [
log
] [
blame
] [
edit
]
#![
allow
(
incomplete_features
)]
#![
feature
(
const_trait_impl
,
effects
)]
#[
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
()
{}