This discussion has been locked.
You can no longer post new replies to this discussion. If you have a question you can start a new discussion

MDK c++11 crashed

Hi,

Compiling the c++11 code will cause armcc crashed,
any suggestion?

struct T{
    inline ~T(){
        ptr; //Remove this line will be OK.
    }
    T()
        : ptr(nullptr){
    }
    void *ptr;
};


void test(T &t){
    auto f = [t](){
    };
}