]> git.lizzy.rs Git - rust.git/blobdiff - tests/compile-fail/complex_types.rs
Fix type complexity lint
[rust.git] / tests / compile-fail / complex_types.rs
index f5b21c6df4b1a5375aa3e89c109919a063b7f167..995132ba88c9420961cd2d2cbaa33e8008110dfa 100755 (executable)
@@ -17,7 +17,6 @@ struct S {
 
 enum E {
     V1(Vec<Vec<Box<(u32, u32, u32, u32)>>>), //~ERROR very complex type
-    //~^ERROR very complex type
     V2 { f: Vec<Vec<Box<(u32, u32, u32, u32)>>> }, //~ERROR very complex type
 }