mirror of
https://github.com/roc-lang/roc.git
synced 2025-07-14 10:05:01 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
extern crate bumpalo;
|
|
|
|
use std::path::{Path, PathBuf};
|
|
|
|
pub fn fixtures_dir() -> PathBuf {
|
|
Path::new("tests").join("fixtures").join("build")
|
|
}
|