mirror of
https://github.com/mozilla/gecko-dev.git
synced 2025-11-10 13:18:45 +02:00
Differential Revision: https://phabricator.services.mozilla.com/D31229 --HG-- extra : moz-landing-system : lando
7 lines
No EOL
229 B
C++
7 lines
No EOL
229 B
C++
void f() {
|
|
int * pointer = nullptr, value = 42, * const const_ptr = &value;
|
|
// This declaration will be diagnosed and transformed into:
|
|
// int * pointer = nullptr;
|
|
// int value = 42;
|
|
// int * const const_ptr = &value;
|
|
} |