snafu
snafu copied to clipboard
`context` and `context(true)` are treated as `context(false)`
Both of these should be compile-time errors.
#[derive(Debug, Snafu)]
enum Error {
#[snafu(context(true))]
Alpha
}
#[derive(Debug, Snafu)]
enum Error {
#[snafu(context)]
Alpha
}