about summary refs log tree commit diff
diff options
context:
space:
mode:
authorMichael Goulet <michael@errs.io>2022-12-01 14:32:57 +0000
committerMichael Goulet <michael@errs.io>2022-12-01 19:00:09 +0000
commite45daa98565338fa7ad60475e35bac88548ddb9e (patch)
treeaa6be3bbedb2234e7021873474f12f2a9dcd38eb
parent367ecffe5297260f11e71881125a5589c8cb5350 (diff)
downloadrust-e45daa98565338fa7ad60475e35bac88548ddb9e.tar.gz
rust-e45daa98565338fa7ad60475e35bac88548ddb9e.zip
Drive-by: remove unused type alias
-rw-r--r--compiler/rustc_infer/src/infer/mod.rs1
1 files changed, 0 insertions, 1 deletions
diff --git a/compiler/rustc_infer/src/infer/mod.rs b/compiler/rustc_infer/src/infer/mod.rs
index 2bcb47cc383..5aebccac6a2 100644
--- a/compiler/rustc_infer/src/infer/mod.rs
+++ b/compiler/rustc_infer/src/infer/mod.rs
@@ -80,7 +80,6 @@ pub struct InferOk<'tcx, T> {
 }
 pub type InferResult<'tcx, T> = Result<InferOk<'tcx, T>, TypeError<'tcx>>;
 
-pub type Bound<T> = Option<T>;
 pub type UnitResult<'tcx> = RelateResult<'tcx, ()>; // "unify result"
 pub type FixupResult<'tcx, T> = Result<T, FixupError<'tcx>>; // "fixup result"