[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / SymbolFile / PDB / Inputs / FunctionNestedBlockTest.cpp
blob62e201df5fefce1a332feae3d067caf57b1fbfa7
1 int main() {
2 auto r = 0;
3 for (auto i = 1; i <= 10; i++) {
4 r += i & 1 + (i - 1) & 1 - 1;
7 return r;