Skip to content

Commit

Permalink
Add visitor for surface
Browse files Browse the repository at this point in the history
  • Loading branch information
nilehmann committed Nov 6, 2023
1 parent dba7651 commit deb45e1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 1 addition & 1 deletion crates/flux-syntax/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
#![feature(rustc_private)]
#![feature(rustc_private, box_patterns)]

extern crate rustc_ast;
extern crate rustc_span;
Expand Down
2 changes: 2 additions & 0 deletions crates/flux-syntax/src/surface.rs
Original file line number Diff line number Diff line change
@@ -1,3 +1,5 @@
pub mod visit;

Check failure on line 1 in crates/flux-syntax/src/surface.rs

View workflow job for this annotation

GitHub Actions / clippy

file not found for module `visit`

error[E0583]: file not found for module `visit` --> crates/flux-syntax/src/surface.rs:1:1 | 1 | pub mod visit; | ^^^^^^^^^^^^^^ | = help: to create the module `visit`, create file "crates/flux-syntax/src/surface/visit.rs" or "crates/flux-syntax/src/surface/visit/mod.rs"

use std::fmt;

pub use rustc_ast::{
Expand Down

0 comments on commit deb45e1

Please sign in to comment.