summaryrefslogtreecommitdiffstats
path: root/src/test/ui/c-variadic/issue-86053-1.rs
blob: b30548e19f9ffb2bd14fe1ae8db29a3007bacfe5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
// Regression test for the ICE described in issue #86053.
// error-pattern:unexpected `self` parameter in function
// error-pattern:`...` must be the last argument of a C-variadic function
// error-pattern:cannot find type `F` in this scope
// error-pattern:in type `&'a &'b usize`, reference has a longer lifetime than the data it references

#![feature(c_variadic)]
#![crate_type="lib"]

fn ordering4 < 'a , 'b     > ( a :            ,   self , self ,   self ,
    self , ... ,   self ,   self , ... ) where F : FnOnce ( & 'a & 'b usize ) {
}