Add RuntimeError::ExposedButNotDefined

This commit is contained in:
Richard Feldman 2020-12-11 21:13:34 -05:00
parent 80cfcd82f8
commit 48909f2114
2 changed files with 9 additions and 0 deletions

View file

@ -146,6 +146,8 @@ pub enum RuntimeError {
/// When the author specifies a type annotation but no implementation
NoImplementation,
ExposedButNotDefined(Symbol),
}
#[derive(Clone, Copy, Debug, PartialEq)]