-
-
Notifications
You must be signed in to change notification settings - Fork 383
Closed
Labels
Description
Zig Version
0.11.0-dev.3944+2e424e019
Zig Language Server Version
0.11.0-dev.542+6bcf140
Steps to Reproduce
No doc comments on errors from errorsets.
const Set = error{
/// Something
something,
};
const Enum = enum {
/// Something
something,
};
pub fn main() !void {
_ = Enum. // something has doc comment
_ = Set. // something has no doc comment
}
Expected Behavior
Doc comments on error set members should be shown.
Actual Behavior
No doc comments on error set members.
FnControlOption