Kotlin: Fix SafeCastConversionContext QLL

This commit is contained in:
Ian Lynagh
2021-11-03 12:33:56 +00:00
parent c20ee76826
commit d9822266f5

View File

@@ -126,7 +126,7 @@ class CastConversionContext extends ConversionSite {
class SafeCastConversionContext extends ConversionSite {
SafeCastExpr c;
CastConversionContext() { this = c.getExpr() }
SafeCastConversionContext() { this = c.getExpr() }
override Type getConversionTarget() { result = c.getType() }