// 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: 3

package ExplorerTest;

// The bodies of member functions are processed after all immediately enclosing
// classes, impl declarations, and interfaces.
class A {
  fn F[self: Self]() -> i32 {
    return G() + self.H();
  }
  fn G() -> i32 { return 1; }
  fn H[self: Self]() -> i32 { return 2; }
}

fn Main() -> i32 {
  var a: A = {};
  return a.F();
}
