| 1 | int externGlobalVar = 2; |
|---|---|
| 2 | |
| 3 | namespace ext { |
| 4 | int externGlobalVar = 4; |
| 5 | } // namespace ext |
| 6 | |
| 7 | struct ExtStruct { |
| 8 | private: |
| 9 | static constexpr inline int static_inline = 16; |
| 10 | } es; |
| 11 |
| 1 | int externGlobalVar = 2; |
|---|---|
| 2 | |
| 3 | namespace ext { |
| 4 | int externGlobalVar = 4; |
| 5 | } // namespace ext |
| 6 | |
| 7 | struct ExtStruct { |
| 8 | private: |
| 9 | static constexpr inline int static_inline = 16; |
| 10 | } es; |
| 11 |