2014-02-13 20:19:03 +00:00
|
|
|
// Copyright 2014 The Rust Project Developers. See the COPYRIGHT
|
|
|
|
// file at the top-level directory of this distribution and at
|
|
|
|
// http://rust-lang.org/COPYRIGHT.
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
|
|
|
|
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
|
|
|
|
// option. This file may not be copied, modified, or distributed
|
|
|
|
// except according to those terms.
|
|
|
|
|
2014-11-08 01:23:33 +00:00
|
|
|
// error-pattern:reached the recursion limit during monomorphization
|
|
|
|
|
2014-02-13 20:19:03 +00:00
|
|
|
// Verify the compiler fails with an error on infinite function
|
|
|
|
// recursions.
|
|
|
|
|
2014-05-06 01:56:44 +00:00
|
|
|
struct Data(Box<Option<Data>>);
|
2014-02-13 20:19:03 +00:00
|
|
|
|
2014-03-05 22:02:44 +00:00
|
|
|
fn generic<T>( _ : Vec<(Data,T)> ) {
|
|
|
|
let rec : Vec<(Data,(bool,T))> = Vec::new();
|
2014-02-14 16:42:23 +00:00
|
|
|
generic( rec );
|
|
|
|
}
|
2014-02-13 20:19:03 +00:00
|
|
|
|
|
|
|
|
|
|
|
fn main () {
|
|
|
|
// Use generic<T> at least once to trigger instantiation.
|
2014-03-05 22:02:44 +00:00
|
|
|
let input : Vec<(Data,())> = Vec::new();
|
2014-02-13 20:19:03 +00:00
|
|
|
generic(input);
|
|
|
|
}
|