From 65e4ec07ebb50cb76805605a84e78b9e56530f75 Mon Sep 17 00:00:00 2001 From: Guillaume Martres Date: Mon, 12 Feb 2018 19:11:45 +0100 Subject: [PATCH] Fix PostTyper doc comment We no longer convert GADT bounds into normal bounds since #3233 was merged. --- compiler/src/dotty/tools/dotc/transform/PostTyper.scala | 2 -- 1 file changed, 2 deletions(-) diff --git a/compiler/src/dotty/tools/dotc/transform/PostTyper.scala b/compiler/src/dotty/tools/dotc/transform/PostTyper.scala index a5c32c568687..4cab1bbdea25 100644 --- a/compiler/src/dotty/tools/dotc/transform/PostTyper.scala +++ b/compiler/src/dotty/tools/dotc/transform/PostTyper.scala @@ -44,8 +44,6 @@ import reporting.diagnostic.messages.{NotAMember, SuperCallsNotAllowedInline} * (11) Minimizes `call` fields of `Inline` nodes to just point to the toplevel * class from which code was inlined. * - * (12) Converts GADT bounds into normal type bounds - * * The reason for making this a macro transform is that some functions (in particular * super and protected accessors and instantiation checks) are naturally top-down and * don't lend themselves to the bottom-up approach of a mini phase. The other two functions