diff options
| author | Michael Wright <mikerite@lavabit.com> | 2019-11-08 07:18:12 +0200 |
|---|---|---|
| committer | Michael Wright <mikerite@lavabit.com> | 2019-11-08 07:18:12 +0200 |
| commit | cc6e27fa71c3d1a2dd624ffa5bfa4d860d659e39 (patch) | |
| tree | f2505e64717299825dc2c460b86208ce8ac9096f | |
| parent | 9c48a2c39aee14abdfd3afd739e8ca31b7020c63 (diff) | |
| download | rust-cc6e27fa71c3d1a2dd624ffa5bfa4d860d659e39.tar.gz rust-cc6e27fa71c3d1a2dd624ffa5bfa4d860d659e39.zip | |
Put ice test auxiliary fix in right place
| -rw-r--r-- | tests/ui/crashes/auxiliary/ice-4727-aux.rs (renamed from tests/ui/crashes/ice-4727-aux.rs) | 4 | ||||
| -rw-r--r-- | tests/ui/crashes/ice-4727.rs | 2 |
2 files changed, 1 insertions, 5 deletions
diff --git a/tests/ui/crashes/ice-4727-aux.rs b/tests/ui/crashes/auxiliary/ice-4727-aux.rs index 952a322e325..58a20caf6c6 100644 --- a/tests/ui/crashes/ice-4727-aux.rs +++ b/tests/ui/crashes/auxiliary/ice-4727-aux.rs @@ -1,7 +1,3 @@ -//ignore-test - -// This file is used by the ice-4727 test but isn't itself a test. -// pub trait Trait { fn fun(par: &str) -> &str; } diff --git a/tests/ui/crashes/ice-4727.rs b/tests/ui/crashes/ice-4727.rs index d9438492901..cdb59caec67 100644 --- a/tests/ui/crashes/ice-4727.rs +++ b/tests/ui/crashes/ice-4727.rs @@ -2,7 +2,7 @@ #![warn(clippy::use_self)] -#[path = "ice-4727-aux.rs"] +#[path = "auxiliary/ice-4727-aux.rs"] mod aux; fn main() {} |
