]> git.lizzy.rs Git - rust.git/commitdiff
workaround for failing test
authorAndre Bogus <bogusandre@gmail.com>
Thu, 15 Oct 2015 14:18:40 +0000 (16:18 +0200)
committerAndre Bogus <bogusandre@gmail.com>
Thu, 15 Oct 2015 14:18:40 +0000 (16:18 +0200)
tests/compile-fail/complex_types.rs

index 995132ba88c9420961cd2d2cbaa33e8008110dfa..f5b21c6df4b1a5375aa3e89c109919a063b7f167 100755 (executable)
@@ -17,6 +17,7 @@ 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
 }