mirror of
https://github.com/rust-lang/rust-analyzer
synced 2025-01-06 10:18:53 +00:00
7 lines
147 B
Rust
7 lines
147 B
Rust
|
use crate::{expr::ExprId};
|
||
|
|
||
|
#[derive(Clone, Debug, PartialEq, Eq)]
|
||
|
pub enum FunctionDiagnostic {
|
||
|
NoSuchField { expr: ExprId, field: usize },
|
||
|
}
|