v2 / vlib / v / fmt / tests / attribute_call_syntax_input.vv
5 lines · 4 sloc · 165 bytes · 114fda5c6ce9061f6212d0bd98ebd30b1cca3f72
Raw
1@[xml(name: 'foo', prefix: 'f', namespace: 'https://example.com/xmlns/foo')]
2struct Foo {}
3
4@[deprecated(msg: 'use bar() instead', after: '2026-06-01')]
5fn foo() {}
6