blob: 1883287f1407c76088ab41ec35876ec594e47515 [file] [log] [blame]
// Verify the compiler fails with an error on infinite function
// recursions.
//@ build-fail
fn generic<T>() { //~ WARN function cannot return without recursing
generic::<Option<T>>();
}
//~^^ ERROR reached the recursion limit while instantiating `generic::<Option<
fn main () {
// Use generic<T> at least once to trigger instantiation.
generic::<i32>();
}