From 1552f672d40c8765bc35136463831503473b2e91 Mon Sep 17 00:00:00 2001 From: Brian Anderson Date: Thu, 5 Mar 2015 17:38:18 -0800 Subject: [PATCH] Remove run-pass/lint-cstack.rs. No longer testing anything. --- src/test/run-pass/lint-cstack.rs | 26 -------------------------- 1 file changed, 26 deletions(-) delete mode 100644 src/test/run-pass/lint-cstack.rs diff --git a/src/test/run-pass/lint-cstack.rs b/src/test/run-pass/lint-cstack.rs deleted file mode 100644 index f180ffcd4e82..000000000000 --- a/src/test/run-pass/lint-cstack.rs +++ /dev/null @@ -1,26 +0,0 @@ -// Copyright 2013 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. - -extern crate libc; - -extern { - fn rust_get_test_int() -> libc::intptr_t; -} - -trait A { - fn foo(&self) { - unsafe { - rust_get_test_int(); - } - } -} - -pub fn main() { -}