2020-09-01 17:12:52 -04:00
|
|
|
extern "C" {
|
2018-02-10 21:01:49 -08:00
|
|
|
fn sqrt<T>(f: T) -> T;
|
2020-09-01 17:12:52 -04: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 21:01:49 -08:00
|
|
|
}
|
2016-05-19 14:00:43 +02:00
|
|
|
|
2020-09-01 17:12:52 -04:00
|
|
|
fn main() {}
|