mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 21:30:12 +01:00
When declaring an associated entity in an interface -- just associated functions for now -- create an associated entity value and corresponding type to represent a "slot in a witness table". Also track the list of associated entities on the interface so that we will eventually be able to check impls against them. Associated entities are represented as the integer index of their slot in a witness table. --------- Co-authored-by: Jon Ross-Perkins <jperkins@google.com>
80 lines
3.0 KiB
Plaintext
80 lines
3.0 KiB
Plaintext
// 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
|
|
|
|
interface Interface { }
|
|
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+6]]:1: ERROR: Redefinition of interface Interface.
|
|
// CHECK:STDERR: interface Interface {
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE-5]]:1: Previous definition was here.
|
|
// CHECK:STDERR: interface Interface { }
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
|
|
interface Interface {
|
|
fn F();
|
|
}
|
|
|
|
fn Function();
|
|
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+6]]:1: ERROR: Duplicate name being declared in the same scope.
|
|
// CHECK:STDERR: interface Function;
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE-5]]:1: Name is previously declared here.
|
|
// CHECK:STDERR: fn Function();
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~
|
|
interface Function;
|
|
|
|
class Class;
|
|
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+6]]:1: ERROR: Duplicate name being declared in the same scope.
|
|
// CHECK:STDERR: interface Class { }
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~
|
|
// CHECK:STDERR: fail_duplicate.carbon:[[@LINE-5]]:1: Name is previously declared here.
|
|
// CHECK:STDERR: class Class;
|
|
// CHECK:STDERR: ^~~~~~~~~~~~
|
|
interface Class { }
|
|
|
|
// CHECK:STDOUT: --- fail_duplicate.carbon
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: constants {
|
|
// CHECK:STDOUT: %.1: type = interface_type @Interface [template]
|
|
// CHECK:STDOUT: %.2: type = interface_type @.1 [template]
|
|
// CHECK:STDOUT: %Class: type = class_type @Class [template]
|
|
// CHECK:STDOUT: %.3: type = interface_type @.2 [template]
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: file {
|
|
// CHECK:STDOUT: package: <namespace> = namespace {.Interface = %Interface.decl.loc7, .Function = %Function, .Class = %Class.decl} [template]
|
|
// CHECK:STDOUT: %Interface.decl.loc7 = interface_decl @Interface, () [template = constants.%.1]
|
|
// CHECK:STDOUT: %Interface.decl.loc15 = interface_decl @Interface, () [template = constants.%.1]
|
|
// CHECK:STDOUT: %Function: <function> = fn_decl @Function [template]
|
|
// CHECK:STDOUT: %.decl.loc27 = interface_decl @.1, () [template = constants.%.2]
|
|
// CHECK:STDOUT: %Class.decl = class_decl @Class, () [template = constants.%Class]
|
|
// CHECK:STDOUT: %.decl.loc37 = interface_decl @.2, () [template = constants.%.3]
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: interface @Interface {
|
|
// CHECK:STDOUT: %F: <function> = fn_decl @F [template]
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: !members:
|
|
// CHECK:STDOUT: .F = <error>
|
|
// CHECK:STDOUT: witness = ()
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: interface @.1;
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: interface @.2 {
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: !members:
|
|
// CHECK:STDOUT: witness = ()
|
|
// CHECK:STDOUT: }
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: class @Class;
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @F();
|
|
// CHECK:STDOUT:
|
|
// CHECK:STDOUT: fn @Function();
|
|
// CHECK:STDOUT:
|