vq / vlib / v / fmt / tests / attribute_call_syntax_expected.vv
5 lines · 4 sloc · 165 bytes
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