blob: 67a27729db7e4679c62206f1499503b5542194f1 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
// This file was auto-generated using 'src/etc/generate-deriving-span-tests.py'
struct Error;
#[derive(PartialEq)]
enum Enum {
A {
x: Error //~ ERROR
}
}
fn main() {}
|