P1start
63553a10ad
Fix the ordering of unsafe
and extern
in methods
This breaks code that looks like this:
trait Foo {
extern "C" unsafe fn foo();
}
impl Foo for Bar {
extern "C" unsafe fn foo() { ... }
}
Change such code to look like this:
trait Foo {
unsafe extern "C" fn foo();
}
impl Foo for Bar {
unsafe extern "C" fn foo() { ... }
}
Fixes #19398.
[breaking-change]
2014-11-30 21:33:04 +13:00
..
2014-11-20 17:19:24 -08:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-20 17:19:24 -08:00
2014-11-26 16:50:13 -08:00
2014-11-26 11:42:06 -05:00
2014-11-25 11:02:47 -08:00
2014-11-26 16:50:13 -08:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-25 11:02:47 -08:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-26 11:42:06 -05:00
2014-11-23 12:24:34 +00:00
2014-11-24 23:01:15 +00:00
2014-11-24 10:07:19 -07:00
2014-11-26 22:21:52 +00:00
2014-11-25 11:12:15 +01:00
2014-11-25 11:02:47 -08:00
2014-11-30 21:33:04 +13:00
2014-11-20 17:19:24 -08:00
2014-11-20 17:19:24 -08:00
2014-11-26 11:42:06 -05:00
2014-11-20 17:19:24 -08:00
2014-11-26 11:42:06 -05:00
2014-11-23 23:37:16 -08:00
2014-11-25 11:22:23 -05:00
2014-11-25 11:22:23 -05:00
2014-11-25 11:02:47 -08:00
2014-11-25 11:02:47 -08:00
2014-11-23 15:23:39 -05:00
2014-11-20 17:19:24 -08:00
2014-11-25 11:02:47 -08:00