]> git.proxmox.com Git - rustc.git/blobdiff - src/tools/clippy/tests/ui/large_types_passed_by_value.rs
New upstream version 1.62.1+dfsg1
[rustc.git] / src / tools / clippy / tests / ui / large_types_passed_by_value.rs
index e4a2e9df4d7ba71d6ad41d0f9faa75d3f7ced853..7601b5c66fa35057f69ea8cd989b5df689761e3c 100644 (file)
@@ -37,7 +37,7 @@ pub trait PubLargeTypeDevourer {
     fn devoure_array_in_public(&self, array: [u8; 6666]);
 }
 
-struct S {}
+struct S;
 impl LargeTypeDevourer for S {
     fn devoure_array(&self, array: [u8; 6666]) {
         todo!();