From 0156f1355a84c1802f594b02f58b39044692f48f Mon Sep 17 00:00:00 2001 From: roblabla Date: Mon, 10 Sep 2018 17:15:22 +0000 Subject: [PATCH] Remove obsolete compile-fail test --- .../compile-fail/identifier/not_identifier.rs | 20 ------------------- 1 file changed, 20 deletions(-) delete mode 100644 test_suite/tests/compile-fail/identifier/not_identifier.rs 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() {}