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