]> git.lizzy.rs Git - rust.git/blob - src/tools/rustfmt/tests/target/issue_4579.rs
Rollup merge of #95040 - frank-king:fix/94981, r=Mark-Simulacrum
[rust.git] / src / tools / rustfmt / tests / target / 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)]
10                         iChannelResolution: ::spirv_std::storage_class::UniformConstant<
11                                 [::spirv_std::glam::Vec3A; 4],
12                         >,
13                 ) {
14                 }
15         };
16 }