rust/tests/ui/resolve/issue-39226.rs

15 lines
232 B
Rust
Raw Normal View History

struct Handle {}
struct Something {
handle: Handle
}
fn main() {
let handle: Handle = Handle {};
let s: Something = Something {
handle: Handle
2017-11-20 06:13:27 -06:00
//~^ ERROR expected value, found struct `Handle`
};
}