fork download
  1. constexpr bool isString(const char*) {
  2. return true;
  3. }
  4.  
  5. int main() {
  6. static const char x[] = "asd";
  7. static_assert(isString(x), "Is not a string");
  8.  
  9. static_assert(isString(0), "Is not a string");
  10.  
  11. }
  12.  
Success #stdin #stdout 0s 3092KB
stdin
Standard input is empty
stdout
Standard output is empty