E0035#
Warning name: reserved_keyword
The word is reserved for possible future use. Please use another name for it.
Check here for the full list of reserved keywords
Erroneous example#
///|
/// Warning: The word `module` is reserved for possible future use.
/// Please consider using another name.
fn module() -> Int {
3
}
Suggestion#
///|
fn module_() -> Int {
3
}