cpp/lifetime_safety_samples.cpp [52:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void sample6() {
    const char *ptr;

    {
        auto str = std::string("text");
        ptr = str.c_str();
        char x = *ptr;
    }

    char y = *ptr;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



cnova/lifetime_safety_samples.cpp [52:62]:
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
void sample6() {
    const char *ptr;

    {
        auto str = std::string("text");
        ptr = str.c_str();
        char x = *ptr;
    }

    char y = *ptr;
}
- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -



