1
Fork 0

Update code to account for extern ABI requirement

This commit is contained in:
Mark Rousskov 2020-09-01 17:28:11 -04:00
parent 920b5ee722
commit 4614671cae
78 changed files with 155 additions and 166 deletions

View file

@ -6,7 +6,7 @@ Erroneous code example:
#![feature(unwind_attributes)]
#[unwind()] // error: expected one argument
pub extern fn something() {}
pub extern "C" fn something() {}
fn main() {}
```