From a0562ec369629abc0b365c95b77e67aec232bd85 Mon Sep 17 00:00:00 2001 From: Niko Matsakis Date: Thu, 22 Feb 2018 20:16:06 -0500 Subject: [PATCH] delete this test file: it also appears as src/rfc-1937-termination-trait/termination-trait-for-result-box-error_ok.rs --- ...termination-trait-for-result-box-error_ok.rs | 17 ----------------- 1 file changed, 17 deletions(-) delete mode 100644 src/test/run-pass/termination-trait-for-result-box-error_ok.rs diff --git a/src/test/run-pass/termination-trait-for-result-box-error_ok.rs b/src/test/run-pass/termination-trait-for-result-box-error_ok.rs deleted file mode 100644 index 269ac451cf4d..000000000000 --- a/src/test/run-pass/termination-trait-for-result-box-error_ok.rs +++ /dev/null @@ -1,17 +0,0 @@ -// Copyright 2018 The Rust Project Developers. See the COPYRIGHT -// file at the top-level directory of this distribution and at -// http://rust-lang.org/COPYRIGHT. -// -// 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. - -#![feature(termination_trait)] - -use std::io::Error; - -fn main() -> Result<(), Box> { - Ok(()) -}