summary refs log tree commit diff
path: root/src/test/ui/generics/generic-no-mangle.fixed
blob: 207d8a91b00289ac8e47baf34b48d115a29fd403 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// run-rustfix

#![deny(no_mangle_generic_items)]


pub fn foo<T>() {} //~ ERROR functions generic over types or consts must be mangled


pub extern "C" fn bar<T>() {} //~ ERROR functions generic over types or consts must be mangled

#[no_mangle]
pub fn baz(x: &i32) -> &i32 { x }

#[no_mangle]
pub fn qux<'a>(x: &'a i32) -> &i32 { x }

fn main() {}