]> git.lizzy.rs Git - rust.git/blobdiff - src/tools/clippy/tests/ui/unsafe_removed_from_name.rs
Merge commit '984330a6ee3c4d15626685d6dc8b7b759ff630bd' into clippyup
[rust.git] / src / tools / clippy / tests / ui / unsafe_removed_from_name.rs
index a1f616733bd920a277f43afb1e9ce8bdfd865cc3..cde4e96d668c2c78b5cb79478702db0e66520e46 100644 (file)
@@ -14,8 +14,8 @@
 use std::cell::UnsafeCell as Bombsawayunsafe;
 
 mod mod_with_some_unsafe_things {
-    pub struct Safe {}
-    pub struct Unsafe {}
+    pub struct Safe;
+    pub struct Unsafe;
 }
 
 use mod_with_some_unsafe_things::Unsafe as LieAboutModSafety;