mirror of
https://github.com/dlang/dmd.git
synced 2025-04-26 21:21:48 +03:00
15 lines
238 B
D
15 lines
238 B
D
/*
|
|
TEST_OUTPUT:
|
|
---
|
|
fail_compilation/fail179.d(11): Error: variable `fail179.main.px` cannot be `final`, perhaps you meant `const`?
|
|
---
|
|
*/
|
|
|
|
void main()
|
|
{
|
|
int x = 3;
|
|
final px = &x;
|
|
*px = 4;
|
|
auto ppx = &px;
|
|
**ppx = 5;
|
|
}
|