]> git.lizzy.rs Git - rust.git/commitdiff
test #[derive(FromPrimitive)] triggers custom-derive error
authorAlex Burka <aburka@seas.upenn.edu>
Thu, 4 Feb 2016 00:58:07 +0000 (19:58 -0500)
committerAlex Burka <aburka@seas.upenn.edu>
Thu, 4 Feb 2016 06:03:08 +0000 (01:03 -0500)
src/test/compile-fail/deriving-primitive.rs

index e8e37d8804986b60894687371c1fa997363475de..be822a173ab5821053a21d7b05abb6eb24562f55 100644 (file)
@@ -1,4 +1,4 @@
-// Copyright 2013 The Rust Project Developers. See the COPYRIGHT
+// Copyright 2016 The Rust Project Developers. See the COPYRIGHT
 // file at the top-level directory of this distribution and at
 // http://rust-lang.org/COPYRIGHT.
 //
@@ -8,27 +8,8 @@
 // option. This file may not be copied, modified, or distributed
 // except according to those terms.
 
-use std::num::FromPrimitive;
-use std::isize;
+#[derive(FromPrimitive)] //~ERROR `#[derive]` for custom traits is not stable
+enum Foo {}
 
-#[derive(FromPrimitive)]
-struct A { x: isize }
-//~^^ ERROR `FromPrimitive` cannot be derived for structs
-//~^^^ ERROR `FromPrimitive` cannot be derived for structs
+fn main() {}
 
-#[derive(FromPrimitive)]
-struct B(isize);
-//~^^ ERROR `FromPrimitive` cannot be derived for structs
-//~^^^ ERROR `FromPrimitive` cannot be derived for structs
-
-#[derive(FromPrimitive)]
-enum C { Foo(isize), Bar(usize) }
-//~^^ ERROR `FromPrimitive` cannot be derived for enums with non-unit variants
-//~^^^ ERROR `FromPrimitive` cannot be derived for enums with non-unit variants
-
-#[derive(FromPrimitive)]
-enum D { Baz { x: isize } }
-//~^^ ERROR `FromPrimitive` cannot be derived for enums with non-unit variants
-//~^^^ ERROR `FromPrimitive` cannot be derived for enums with non-unit variants
-
-pub fn main() {}