```c
constexpr int32_t fn( int32_t i )
{
return i * i;
}
u8 + fn( 10 ) // Compliant by exception #1
```
Is u8 a typo? Reasonable one might be 'u32 + fn(10)'?
u8 << 2 is non-compliant, so should u8 + f(10), this should be a typo.
constexpr int32_t fn( int32_t i )
{
return i * i;
}
u8 + fn( 10 ) // Compliant by exception #1
```
Is u8 a typo? Reasonable one might be 'u32 + fn(10)'?
u8 << 2 is non-compliant, so should u8 + f(10), this should be a typo.