mirror of
https://git.proxmox.com/git/rustc
synced 2025-05-29 22:40:17 +00:00
14 lines
203 B
Rust
14 lines
203 B
Rust
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
|
|
|
|
#[derive(PartialEq)]
|
|
struct Error;
|
|
|
|
#[derive(Eq,PartialEq)]
|
|
enum Enum {
|
|
A(
|
|
Error //~ ERROR
|
|
)
|
|
}
|
|
|
|
fn main() {}
|