Date: Mon, 29 Sep 2025 14:11:35 +0300
Yes the paper would allow using builtin types
```
int* p{};
// p.free();
// ERROR: int* has no members
p.::free(); // fine
```
This would bring builtin types and class types closer together which I
think is a good thing
```
int* p{};
// p.free();
// ERROR: int* has no members
p.::free(); // fine
```
This would bring builtin types and class types closer together which I
think is a good thing
Received on 2025-09-29 11:11:49