Rename subtest's Result to SubtestResult.

This avoids naming confusion with the standard `Result`, which is
included in the prelude.
This commit is contained in:
Dan Gohman
2018-06-04 16:32:55 -07:00
parent 1087ff3a01
commit 4e64fc11c9
16 changed files with 45 additions and 47 deletions

View File

@@ -8,7 +8,7 @@ use std::borrow::Cow;
use cretonne_codegen::cfg_printer::CFGPrinter;
use cretonne_codegen::ir::Function;
use cretonne_reader::TestCommand;
use subtest::{self, Context, Result as STResult, SubTest};
use subtest::{self, Context, SubTest, SubtestResult as STResult};
/// Object implementing the `test print-cfg` sub-test.
struct TestPrintCfg;