Mark only unreachable parts of element if it has reachable parts
like for 'return todo()' mark only 'return'
This commit is contained in:
@@ -17,7 +17,7 @@ fun lock<T>(lock : Lock, body : () -> T) : T {
|
||||
//more tests
|
||||
fun t1() : Int {
|
||||
try {
|
||||
<!UNREACHABLE_CODE!>return 1<!>
|
||||
<!UNREACHABLE_CODE!>return<!> 1
|
||||
}
|
||||
finally {
|
||||
return 2
|
||||
|
||||
Reference in New Issue
Block a user