We are running a survey to help us improve the experience for all of our members. If you see the survey appear, please take the time to tell us about your experience if you can.
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](){ }; }