blob: 91a0e0d48299c9094a71d61386d777a457f645f7 [file] [log] [blame]
// check-pass
#![allow(incomplete_features)]
#![feature(adt_const_params)]
pub struct Element;
pub trait Node {
fn elements<const T: &'static str>(&self) -> impl Iterator<Item = Element>;
}
fn main() {}