]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/source/issue_4579.rs
Rollup merge of #107166 - petrochenkov:nooptable, r=oli-obk
[rust.git] / src / tools / rustfmt / tests / source / issue_4579.rs
1 // rustfmt-hard_tabs: true
2
3 #[macro_export]
4 macro_rules! main {
5         () => {
6                 #[spirv(fragment)]
7                 pub fn main_fs(
8                         mut out_color: ::spirv_std::storage_class::Output<Vec4>,
9                         #[spirv(descriptor_set = 1)]iChannelResolution: ::spirv_std::storage_class::UniformConstant<
10                                 [::spirv_std::glam::Vec3A; 4],
11                         >,
12                 ) {
13                 }
14         };
15 }