#include<iostream>constinitintglobal_id=42;// Compile-time initializedintget_initial_value(){return100;}// This would be an error because get_initial_value() is not constexpr// constinit int another = get_initial_value(); // ❌ Errorintmain(){std::cout<<"global_id = "<<global_id<<"\n";// You can still modify itglobal_id+=1;std::cout<<"global_id (after increment) = "<<global_id<<"\n";return0;}