aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/dotty/tools/dotc/core/Types.scala2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/dotty/tools/dotc/core/Types.scala b/src/dotty/tools/dotc/core/Types.scala
index 49119d283..cea442871 100644
--- a/src/dotty/tools/dotc/core/Types.scala
+++ b/src/dotty/tools/dotc/core/Types.scala
@@ -2401,7 +2401,7 @@ object Types {
/** The non-variant type bounds or alias type with given bounds */
def derivedTypeBounds(lo: Type, hi: Type)(implicit ctx: Context) =
if ((lo eq this.lo) && (hi eq this.hi) && (variance == 0)) this
- else TypeBounds.orAlias(lo, hi)
+ else TypeBounds.real(lo, hi)
/** If this is an alias, a derived alias with the new variance,
* Otherwise the type itself.