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-25 11:02:47 -08:00
2014-11-26 16:50:13 -08:00
2014-11-25 11:02:47 -08:00
2014-11-24 10:07:19 -07:00
2014-11-25 11:12:15 +01:00
2014-11-25 11:02:47 -08:00
2014-11-20 17:19:24 -08:00