]> git.lizzy.rs Git - rust.git/blobdiff - tests/ui/item_after_statement.rs
Ignore associated items in trait *implementations* when considering type complexity
[rust.git] / tests / ui / item_after_statement.rs
index 377e58e44174977a5e4bdbea2257ada3d4946633..d439ca1e4e1a171ca3ef20dc99f2311b968b5573 100644 (file)
@@ -37,3 +37,16 @@ fn say_something() {
     b!();
     println!("{}", a);
 }
+
+fn semicolon() {
+    struct S {
+        a: u32,
+    };
+    impl S {
+        fn new(a: u32) -> Self {
+            Self { a }
+        }
+    }
+
+    let _ = S::new(3);
+}