blob: c0108779d404268b195d09d70c331f12b24b63fc [file] [edit]
error: expected one of `!`, `(`, `)`, `+`, `,`, `::`, or `<`, found `:`
--> $DIR/colon-in-tuple-struct.rs:3:23
|
LL | struct Foo(std::string:String);
| ^ expected one of 7 possible tokens
|
help: if you meant to write a path, use a double colon
|
LL | struct Foo(std::string::String);
| +
error: aborting due to 1 previous error