Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion crates/trunk-ir/src/arena/dialect/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@ mod tests {
}

fn make_func_type(types: &mut TypeInterner) -> crate::arena::TypeRef {
types.intern(TypeDataBuilder::new(Symbol::new("func"), Symbol::new("fn")).build())
types.intern(TypeDataBuilder::new(Symbol::new("core"), Symbol::new("func")).build())
}

// ================================================================
Expand Down
2 changes: 2 additions & 0 deletions crates/trunk-ir/src/arena/mod.rs
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,13 @@
pub mod context;
pub mod dialect;
pub mod ops;
pub mod parser;
pub mod printer;
pub mod refs;
pub mod rewrite;
pub mod transforms;
pub mod types;
pub mod validation;
pub mod walk;

pub use context::{
Expand Down
Loading
Loading