// Part of the Carbon Language project, under the Apache License v2.0 with LLVM
// Exceptions. See /LICENSE for license information.
// SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
//
// AUTOUPDATE
// CHECK:STDOUT: result: 5

package ExplorerTest;

class Point(T:! type) {
  var x: T;
  var y: T;
}

fn GetX[T:! type](pt: Point(T)) -> T {
  return pt.x;
}
fn GetY(T:! type, pt: Point(T)) -> T {
  return pt.y;
}

fn Main() -> i32 {
  var p: Point(i32) = {.x = 1, .y = 2};
  // TODO: Should `GetX({.x = 1, .y = 2})` work? See #1251.
  return GetX(p) + GetY(i32, {.x = 3, .y = 4});
}
