2020-03-13 09:04:14 +09:00
|
|
|
// Regression test for #67739
|
|
|
|
|
|
|
|
|
|
#![allow(incomplete_features)]
|
|
|
|
|
#![feature(const_generics)]
|
|
|
|
|
|
|
|
|
|
use std::mem;
|
|
|
|
|
|
|
|
|
|
pub trait Trait {
|
|
|
|
|
type Associated: Sized;
|
|
|
|
|
|
|
|
|
|
fn associated_size(&self) -> usize {
|
|
|
|
|
[0u8; mem::size_of::<Self::Associated>()];
|
2020-03-27 01:46:24 +02:00
|
|
|
//~^ ERROR constant expression depends on a generic parameter
|
2020-03-13 09:04:14 +09:00
|
|
|
0
|
|
|
|
|
}
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
fn main() {}
|