Skip to content

Commit 669e8aa

Browse files
committed
add test case
Change-Id: Ic0453367df8032afedd048916c9292eafd75c2f3
1 parent 7534480 commit 669e8aa

File tree

1 file changed

+8
-0
lines changed

1 file changed

+8
-0
lines changed

test/escape_iface_with_devirt_type_assertions.go

+8
Original file line numberDiff line numberDiff line change
@@ -119,6 +119,14 @@ func t2() {
119119
callA(a) // ERROR "devirtualizing" "inlining call"
120120
callIfA(a) // ERROR "devirtualizing" "inlining call"
121121
}
122+
123+
{
124+
var a M = &Impl{} // ERROR "does not escape"
125+
// Note the !ok condition, devirtualizing here is fine, as this is not going to be called.
126+
if v, ok := a.(M); !ok {
127+
v.M() // ERROR "devirtualizing" "inlining call"
128+
}
129+
}
122130
}
123131

124132
func newM() M { // ERROR "can inline"

0 commit comments

Comments
 (0)