blob: 4c92c5d7788f3d46bf938b06752c001b521ba19c [file] [log] [blame]
fn main() {
// ANCHOR: here
struct Color(i32, i32, i32);
struct Point(i32, i32, i32);
let black = Color(0, 0, 0);
let origin = Point(0, 0, 0);
// ANCHOR_END: here
}