====================
hardcoded identifier
====================

using __intrinsics__.Handle;

---

(source_file
  (hardcoded_symbol)
)


======
assert
======

assert(true, "This is an assertion error");
static_assert(true, "This is an assertion error");

---

(source_file
  (assertion
    (call_arguments
      (bool_literal)
      (string_literal)
    )
  )
  (assertion
    (call_arguments
      (bool_literal)
      (string_literal)
    )
  )
)
