v2 / vlib / v / parser / tests / attribute_call_syntax.vv
18 lines · 13 sloc · 360 bytes · 3ffc951cf555dc4818309a507ccb9d0da4de748f
Raw
1// vfmt off
2@[unsafe()]
3fn allow_unsafe_parentheses() {}
4
5@[deprecated('use new_fn instead')]
6fn old_positional() {}
7
8@[deprecated(msg: 'use new_fn instead', after: '2999-10-10')]
9fn old_named() {}
10
11@[deprecated('use new_fn instead', after: '2999-10-10')]
12fn old_mixed() {}
13
14@[custom(flag: true, count: 2)]
15fn custom_named_args() {}
16// vfmt on
17
18fn new_fn() {}
19