Skip to content

Experiment with accessor API #143

Experiment with accessor API

Experiment with accessor API #143

GitHub Actions / clippy failed Nov 28, 2023 in 0s

clippy

3 errors

Details

Results

Message level Amount
Internal compiler error 0
Error 3
Warning 0
Note 0
Help 0

Versions

  • rustc 1.76.0-nightly (49b3924bd 2023-11-27)
  • cargo 1.76.0-nightly (9b13310ca 2023-11-24)
  • clippy 0.1.76 (49b3924 2023-11-27)

Annotations

Check failure on line 11 in scopegraphs-lib/src/resolve/topdown.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved import `crate::scopegraph::ScopeGraph`

error[E0432]: unresolved import `crate::scopegraph::ScopeGraph`
  --> scopegraphs-lib/src/resolve/topdown.rs:11:5
   |
11 | use crate::scopegraph::ScopeGraph;
   |     ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^ no `ScopeGraph` in `scopegraph`

Check failure on line 6 in scopegraphs-lib/src/resolve/topdown.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

unresolved imports `crate::scopegraph::Scope`, `crate::scopegraph::ScopeRef`

error[E0432]: unresolved imports `crate::scopegraph::Scope`, `crate::scopegraph::ScopeRef`
 --> scopegraphs-lib/src/resolve/topdown.rs:6:18
  |
6 |     scopegraph::{Scope, ScopeRef},
  |                  ^^^^^  ^^^^^^^^ no `ScopeRef` in `scopegraph`
  |                  |
  |                  no `Scope` in `scopegraph`
  |
  = help: consider importing this struct instead:
          std::thread::Scope

Check failure on line 3 in scopegraphs-lib/src/lib.rs

See this annotation in the file changed.

@github-actions github-actions / clippy

file not found for module `scopegraph`

error[E0583]: file not found for module `scopegraph`
 --> scopegraphs-lib/src/lib.rs:3:1
  |
3 | pub mod scopegraph;
  | ^^^^^^^^^^^^^^^^^^^
  |
  = help: to create the module `scopegraph`, create file "scopegraphs-lib/src/scopegraph.rs" or "scopegraphs-lib/src/scopegraph/mod.rs"
  = note: if there is a `mod scopegraph` elsewhere in the crate already, import it with `use crate::...` instead