From: Robert Griesemer Date: Thu, 9 Sep 2021 22:55:05 +0000 (-0700) Subject: cmd/compile: fix test case for unified IR (fix build) X-Git-Tag: go1.18beta1~1391 X-Git-Url: http://www.git.cypherpunks.su/?a=commitdiff_plain;h=b32209d22d0418594bd60af152b0f2c90c677941;p=gostls13.git cmd/compile: fix test case for unified IR (fix build) For #48301. Change-Id: Ie5f57dcce86773c06c5140abf13a6cfff79eb323 Reviewed-on: https://go-review.googlesource.com/c/go/+/348743 Trust: Robert Griesemer Run-TryBot: Robert Griesemer Reviewed-by: Matthew Dempsky TryBot-Result: Go Bot --- diff --git a/test/fixedbugs/issue48301.go b/test/fixedbugs/issue48301.go index 46fe779a42..1ff9ffb9a0 100644 --- a/test/fixedbugs/issue48301.go +++ b/test/fixedbugs/issue48301.go @@ -9,5 +9,5 @@ package p func _() { - type T = T // ERROR "T uses T" + type T = T // ERROR "T uses T|invalid recursive type T" }