FIR DFA: use element-wise join everywhere

This commit is contained in:
Jinseong Jeon
2020-10-28 14:48:36 -07:00
committed by Dmitriy Novozhilov
parent 771c839d74
commit a5389b067b
5 changed files with 11 additions and 152 deletions
@@ -8,7 +8,7 @@ fun foo() {
}
// TODO: this testdata fixates undesired behavior (it should be an unsafe call)
x.length // 'x' is unsoundly smartcasted here
x.<!INAPPLICABLE_CANDIDATE!>length<!> // 'x' is unsoundly smartcasted here
}
fun bar() {
@@ -19,5 +19,5 @@ fun bar() {
}
// TODO: this testdata fixates undesired behavior (it should be an unsafe call)
x.size // 'x' is unsoundly smartcasted here
x.<!INAPPLICABLE_CANDIDATE!>size<!> // 'x' is unsoundly smartcasted here
}