[Example 1: constexprconstunsignedchar arr[]={// a hypothetical resource capable of expanding to four or more elements#embed<sdk/jump.wav>};
constexprconstunsignedchar offset_arr[]={// the same hypothetical resource capable of expanding to four or more elements#embed<sdk/jump.wav> offset(2)};
constexprconstunsignedchar offset_limit_arr[]={// the same hypothetical resource capable of expanding to four or more elements#embed<sdk/jump.wav> offset(1) limit(1)};
static_assert(arr[2]== offset_arr[0]); // OKstatic_assert(arr[3]== offset_arr[1]); // OKstatic_assert(arr[1]== offset_limit_arr[0]); // OK — end example]