Reviewers: a.sidorin, hiraditya Reviewed By: hiraditya Subscribers: hiraditya, martong, cfe-commits Differential Revision: https://reviews.llvm.org/D50796 llvm-svn: 339827
22 lines
197 B
C++
22 lines
197 B
C++
void f() {
|
|
if (true)
|
|
return;
|
|
|
|
if (int j = 3)
|
|
return;
|
|
|
|
if (int j; true)
|
|
return;
|
|
|
|
if (true)
|
|
return;
|
|
else
|
|
return;
|
|
|
|
if (true) {
|
|
return;
|
|
} else {
|
|
return;
|
|
}
|
|
}
|