rust/src/test/ui/const-generics/issues/issue-67739.rs

18 lines
371 B
Rust
Raw Normal View History

// revisions: full min
#![cfg_attr(full, feature(const_generics))]
#![cfg_attr(full, allow(incomplete_features))]
2020-03-12 19:04:14 -05:00
use std::mem;
pub trait Trait {
type Associated: Sized;
fn associated_size(&self) -> usize {
[0u8; mem::size_of::<Self::Associated>()];
//~^ ERROR constant expression depends on a generic parameter
2020-03-12 19:04:14 -05:00
0
}
}
fn main() {}