Sha256: 6de91f71ddf038dffa3b9da33763a2ec3a5aa0047528e19ba998d5efe3aada5b
Contents?: true
Size: 238 Bytes
Versions: 20
Compression:
Stored size: 238 Bytes
Contents
use thiserror::Error; #[derive(Error, Debug)] #[error] pub struct MyError; fn main() { // No error on the following line. Thiserror emits an Error impl despite the // bad attribute. _ = &MyError as &dyn std::error::Error; }
Version data entries
20 entries across 20 versions & 1 rubygems