blob: a28b1c00113c9b6ef15336f7b5c712d22f00a06f (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
struct ArpIPv4<'a> {
s: &'a u8
}
impl<'a> ArpIPv4<'a> {
const LENGTH: usize = 20;
pub fn to_buffer() -> [u8; Self::LENGTH] {
//~^ ERROR: generic `Self` types are currently not permitted in anonymous constants
unimplemented!()
}
}
fn main() {}
|