thelilylang / lily

The Lily programming language ⚜
MIT License
9 stars 2 forks source link

Infer string as a pointer #540

Closed ArthurPV closed 1 month ago

ArthurPV commented 1 month ago

(before) The following code caused issues:

#include <assert.h>

int main() {
  assert(0 && "error");
}