mirror of
https://github.com/roc-lang/roc.git
synced 2025-09-30 23:31:12 +00:00
20 lines
334 B
Rust
20 lines
334 B
Rust
#[macro_use]
|
|
extern crate pretty_assertions;
|
|
#[macro_use]
|
|
extern crate indoc;
|
|
|
|
extern crate bumpalo;
|
|
extern crate inkwell;
|
|
extern crate libc;
|
|
extern crate roc_gen;
|
|
|
|
#[macro_use]
|
|
mod helpers;
|
|
|
|
#[cfg(test)]
|
|
mod gen_str {
|
|
#[test]
|
|
fn str_concat() {
|
|
assert_evals_to!("Str.concat \"a\" \"b\"", "abc", &'static str);
|
|
}
|
|
}
|