[flang] Fix length handling in character kind implicit conversion (#74586)
[llvm-project.git] / lldb / test / Shell / Process / Inputs / env.cpp
blobcbf671ccd2f509c064ee7fce7af87fd6f96ed476
1 #include <cstdlib>
2 #include <iostream>
4 int main() {
5 if (const char *env_p = std::getenv("FOO"))
6 std::cout << "FOO=" << env_p << '\n';