rust/src/test/ui/issues/issue-8727.rs
2018-12-25 21:08:33 -07:00

15 lines
374 B
Rust

// Verify the compiler fails with an error on infinite function
// recursions.
fn generic<T>() {
generic::<Option<T>>();
}
//~^^^ ERROR reached the recursion limit while instantiating `generic::<std::option::Option<
//~| WARN function cannot return without recursing
fn main () {
// Use generic<T> at least once to trigger instantiation.
generic::<i32>();
}