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

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

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 12:13:27 +00:00
//~^ ERROR expected value, found struct `Handle`
};
}