2020-09-01 16:12:52 -05:00
|
|
|
extern "C" {
|
2018-02-10 23:01:49 -06:00
|
|
|
fn sqrt<T>(f: T) -> T;
|
2020-09-01 16:12:52 -05:00
|
|
|
//~^ ERROR foreign items may not have type parameters [E0044]
|
|
|
|
//~| HELP replace the type parameters with concrete types
|
|
|
|
//~| NOTE can't have type parameters
|
2018-02-10 23:01:49 -06:00
|
|
|
}
|
2016-05-19 07:00:43 -05:00
|
|
|
|
2020-09-01 16:12:52 -05:00
|
|
|
fn main() {}
|