about summary refs log tree commit diff
path: root/tests/ui/fn/keyword-order.rs
blob: fe7e3811ca83545c2e503bacbb216b587ab83fcf (plain)
1
2
3
4
5
6
//@ edition:2018

default pub const async unsafe extern fn err() {} //~ ERROR `default` is not followed by an item
//~^ ERROR expected item, found keyword `pub`

pub default const async unsafe extern fn ok() {}