int** test() { return nullptr; } void main() { int** b = test(); int*** c = &b; test(b == *c); test(length(b)); test(length(c)); test(b == nullptr); const int** w = b; test(w == nullptr); }