diff --git a/test_suite/tests/compile-fail/identifier/not_identifier.rs b/test_suite/tests/compile-fail/identifier/not_identifier.rs deleted file mode 100644 index 7a240d53..00000000 --- a/test_suite/tests/compile-fail/identifier/not_identifier.rs +++ /dev/null @@ -1,20 +0,0 @@ -// Copyright 2017 Serde Developers -// -// Licensed under the Apache License, Version 2.0 or the MIT license -// , at your -// option. This file may not be copied, modified, or distributed -// except according to those terms. - -#[macro_use] -extern crate serde_derive; - -#[derive(Deserialize)] -enum F { - A, - #[serde(other)] - //~^^^^ ERROR: #[serde(other)] may only be used inside a field_identifier - B, -} - -fn main() {}