|
|
@@ -8,12 +8,16 @@
|
|
|
// TIP: To dump output, run:
|
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interface/no_prelude/fail_duplicate.carbon
|
|
|
|
|
|
+// --- fail_redefine_without_dependents.carbon
|
|
|
+
|
|
|
+library "redefine_without_dependents";
|
|
|
+
|
|
|
interface Interface { }
|
|
|
|
|
|
-// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+7]]:1: ERROR: Redefinition of interface Interface.
|
|
|
+// CHECK:STDERR: fail_redefine_without_dependents.carbon:[[@LINE+7]]: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: fail_redefine_without_dependents.carbon:[[@LINE-5]]:1: Previously defined here.
|
|
|
// CHECK:STDERR: interface Interface { }
|
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
|
|
|
// CHECK:STDERR:
|
|
|
@@ -21,79 +25,199 @@ interface Interface {
|
|
|
fn F();
|
|
|
}
|
|
|
|
|
|
+// --- fail_redefine_with_dependents.carbon
|
|
|
+
|
|
|
+library "redefine_with_dependents";
|
|
|
+
|
|
|
+interface Interface {}
|
|
|
+
|
|
|
+// CHECK:STDERR: fail_redefine_with_dependents.carbon:[[@LINE+7]]:1: ERROR: Redefinition of `interface Interface`.
|
|
|
+// CHECK:STDERR: interface Interface {
|
|
|
+// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
|
|
|
+// CHECK:STDERR: fail_redefine_with_dependents.carbon:[[@LINE-5]]:1: Previously defined here.
|
|
|
+// CHECK:STDERR: interface Interface {}
|
|
|
+// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~
|
|
|
+// CHECK:STDERR:
|
|
|
+interface Interface {
|
|
|
+ fn F[self: Self]();
|
|
|
+}
|
|
|
+
|
|
|
+// --- fail_name_conflict_with_fn.carbon
|
|
|
+
|
|
|
+library "name_conflict";
|
|
|
+
|
|
|
fn Function();
|
|
|
|
|
|
-// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+7]]:1: ERROR: Duplicate name being declared in the same scope.
|
|
|
+// CHECK:STDERR: fail_name_conflict_with_fn.carbon:[[@LINE+7]]: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: fail_name_conflict_with_fn.carbon:[[@LINE-5]]:1: Name is previously declared here.
|
|
|
// CHECK:STDERR: fn Function();
|
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~
|
|
|
// CHECK:STDERR:
|
|
|
interface Function;
|
|
|
|
|
|
+// --- fail_name_conflict_with_class.carbon
|
|
|
+
|
|
|
class Class;
|
|
|
|
|
|
-// CHECK:STDERR: fail_duplicate.carbon:[[@LINE+6]]:1: ERROR: Duplicate name being declared in the same scope.
|
|
|
+// CHECK:STDERR: fail_name_conflict_with_class.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: fail_name_conflict_with_class.carbon:[[@LINE-5]]:1: Name is previously declared here.
|
|
|
// CHECK:STDERR: class Class;
|
|
|
// CHECK:STDERR: ^~~~~~~~~~~~
|
|
|
interface Class { }
|
|
|
|
|
|
-// CHECK:STDOUT: --- fail_duplicate.carbon
|
|
|
+// CHECK:STDOUT: --- fail_redefine_without_dependents.carbon
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: constants {
|
|
|
// CHECK:STDOUT: %.1: type = interface_type @Interface [template]
|
|
|
// CHECK:STDOUT: %Self.1: %.1 = bind_symbolic_name Self 0 [symbolic]
|
|
|
+// CHECK:STDOUT: %.2: type = interface_type @.1 [template]
|
|
|
+// CHECK:STDOUT: %Self.2: %.2 = bind_symbolic_name Self 0 [symbolic]
|
|
|
// CHECK:STDOUT: %F.type: type = fn_type @F [template]
|
|
|
-// CHECK:STDOUT: %.2: type = tuple_type () [template]
|
|
|
+// CHECK:STDOUT: %.3: type = tuple_type () [template]
|
|
|
// CHECK:STDOUT: %F: %F.type = struct_value () [template]
|
|
|
-// CHECK:STDOUT: %Function.type: type = fn_type @Function [template]
|
|
|
-// CHECK:STDOUT: %Function: %Function.type = struct_value () [template]
|
|
|
-// CHECK:STDOUT: %.3: type = interface_type @.1 [template]
|
|
|
-// CHECK:STDOUT: %Class: type = class_type @Class [template]
|
|
|
-// CHECK:STDOUT: %.4: type = interface_type @.2 [template]
|
|
|
-// CHECK:STDOUT: %Self.2: %.4 = bind_symbolic_name Self 0 [symbolic]
|
|
|
+// CHECK:STDOUT: %.4: type = assoc_entity_type %.2, %F.type [template]
|
|
|
+// CHECK:STDOUT: %.5: %.4 = assoc_entity element0, @.1.%F.decl [template]
|
|
|
// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: file {
|
|
|
// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
|
-// CHECK:STDOUT: .Interface = %Interface.decl.loc11
|
|
|
-// CHECK:STDOUT: .Function = %Function.decl
|
|
|
-// CHECK:STDOUT: .Class = %Class.decl
|
|
|
+// CHECK:STDOUT: .Interface = %Interface.decl
|
|
|
// CHECK:STDOUT: }
|
|
|
-// CHECK:STDOUT: %Interface.decl.loc11: type = interface_decl @Interface [template = constants.%.1] {}
|
|
|
-// CHECK:STDOUT: %Interface.decl.loc20: type = interface_decl @Interface [template = constants.%.1] {}
|
|
|
-// CHECK:STDOUT: %Function.decl: %Function.type = fn_decl @Function [template = constants.%Function] {}
|
|
|
-// CHECK:STDOUT: %.decl.loc33: type = interface_decl @.1 [template = constants.%.3] {}
|
|
|
-// CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {}
|
|
|
-// CHECK:STDOUT: %.decl.loc43: type = interface_decl @.2 [template = constants.%.4] {}
|
|
|
+// CHECK:STDOUT: %Interface.decl: type = interface_decl @Interface [template = constants.%.1] {}
|
|
|
+// CHECK:STDOUT: %.decl: type = interface_decl @.1 [template = constants.%.2] {}
|
|
|
// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: interface @Interface {
|
|
|
-// CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {}
|
|
|
+// CHECK:STDOUT: %Self: %.1 = bind_symbolic_name Self 0 [symbolic = constants.%Self.1]
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: !members:
|
|
|
-// CHECK:STDOUT: .Self = <unexpected>.inst+3
|
|
|
-// CHECK:STDOUT: .F = <error>
|
|
|
+// CHECK:STDOUT: .Self = %Self
|
|
|
// CHECK:STDOUT: witness = ()
|
|
|
// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
-// CHECK:STDOUT: interface @.1;
|
|
|
+// CHECK:STDOUT: interface @.1 {
|
|
|
+// CHECK:STDOUT: %Self: %.2 = bind_symbolic_name Self 0 [symbolic = constants.%Self.2]
|
|
|
+// CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {}
|
|
|
+// CHECK:STDOUT: %.loc14: %.4 = assoc_entity element0, %F.decl [template = constants.%.5]
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: !members:
|
|
|
+// CHECK:STDOUT: .Self = %Self
|
|
|
+// CHECK:STDOUT: .F = %.loc14
|
|
|
+// CHECK:STDOUT: witness = (%F.decl)
|
|
|
+// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
-// CHECK:STDOUT: interface @.2 {
|
|
|
-// CHECK:STDOUT: %Self: %.4 = bind_symbolic_name Self 0 [symbolic = constants.%Self.2]
|
|
|
+// CHECK:STDOUT: generic fn @F(@.1.%Self: %.2) {
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: fn();
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: specific @F(constants.%Self.2) {}
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: --- fail_redefine_with_dependents.carbon
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: constants {
|
|
|
+// CHECK:STDOUT: %.1: type = interface_type @Interface [template]
|
|
|
+// CHECK:STDOUT: %Self.1: %.1 = bind_symbolic_name Self 0 [symbolic]
|
|
|
+// CHECK:STDOUT: %.2: type = interface_type @.1 [template]
|
|
|
+// CHECK:STDOUT: %Self.2: %.2 = bind_symbolic_name Self 0 [symbolic]
|
|
|
+// CHECK:STDOUT: %F.type: type = fn_type @F [template]
|
|
|
+// CHECK:STDOUT: %.3: type = tuple_type () [template]
|
|
|
+// CHECK:STDOUT: %F: %F.type = struct_value () [template]
|
|
|
+// CHECK:STDOUT: %.4: type = assoc_entity_type %.2, %F.type [template]
|
|
|
+// CHECK:STDOUT: %.5: %.4 = assoc_entity element0, @.1.%F.decl [template]
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: file {
|
|
|
+// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
|
+// CHECK:STDOUT: .Interface = %Interface.decl
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT: %Interface.decl: type = interface_decl @Interface [template = constants.%.1] {}
|
|
|
+// CHECK:STDOUT: %.decl: type = interface_decl @.1 [template = constants.%.2] {}
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: interface @Interface {
|
|
|
+// CHECK:STDOUT: %Self: %.1 = bind_symbolic_name Self 0 [symbolic = constants.%Self.1]
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: !members:
|
|
|
// CHECK:STDOUT: .Self = %Self
|
|
|
// CHECK:STDOUT: witness = ()
|
|
|
// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
-// CHECK:STDOUT: class @Class;
|
|
|
+// CHECK:STDOUT: interface @.1 {
|
|
|
+// CHECK:STDOUT: %Self: %.2 = bind_symbolic_name Self 0 [symbolic = constants.%Self.2]
|
|
|
+// CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
|
|
|
+// CHECK:STDOUT: %Self.ref: %.2 = name_ref Self, %Self [symbolic = @F.%Self (constants.%Self.2)]
|
|
|
+// CHECK:STDOUT: %.loc14_14.1: type = facet_type_access %Self.ref [symbolic = @F.%Self (constants.%Self.2)]
|
|
|
+// CHECK:STDOUT: %.loc14_14.2: type = converted %Self.ref, %.loc14_14.1 [symbolic = @F.%Self (constants.%Self.2)]
|
|
|
+// CHECK:STDOUT: %self.loc14_8.1: @F.%Self (%Self.2) = param self
|
|
|
+// CHECK:STDOUT: %self.loc14_8.2: @F.%Self (%Self.2) = bind_name self, %self.loc14_8.1
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT: %.loc14_21: %.4 = assoc_entity element0, %F.decl [template = constants.%.5]
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: !members:
|
|
|
+// CHECK:STDOUT: .Self = %Self
|
|
|
+// CHECK:STDOUT: .F = %.loc14_21
|
|
|
+// CHECK:STDOUT: witness = (%F.decl)
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: generic fn @F(@.1.%Self: %.2) {
|
|
|
+// CHECK:STDOUT: %Self: %.2 = bind_symbolic_name Self 0 [symbolic = %Self (constants.%Self.2)]
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: fn[@.1.%self.loc14_8.2: @F.%Self (%Self.2)]();
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: specific @F(constants.%Self.2) {
|
|
|
+// CHECK:STDOUT: %Self => constants.%Self.2
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: --- fail_name_conflict_with_fn.carbon
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: constants {
|
|
|
+// CHECK:STDOUT: %Function.type: type = fn_type @Function [template]
|
|
|
+// CHECK:STDOUT: %.1: type = tuple_type () [template]
|
|
|
+// CHECK:STDOUT: %Function: %Function.type = struct_value () [template]
|
|
|
+// CHECK:STDOUT: %.2: type = interface_type @.1 [template]
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: file {
|
|
|
+// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
|
+// CHECK:STDOUT: .Function = %Function.decl
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT: %Function.decl: %Function.type = fn_decl @Function [template = constants.%Function] {}
|
|
|
+// CHECK:STDOUT: %.decl: type = interface_decl @.1 [template = constants.%.2] {}
|
|
|
+// CHECK:STDOUT: }
|
|
|
// CHECK:STDOUT:
|
|
|
-// CHECK:STDOUT: fn @F();
|
|
|
+// CHECK:STDOUT: interface @.1;
|
|
|
// CHECK:STDOUT:
|
|
|
// CHECK:STDOUT: fn @Function();
|
|
|
// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: --- fail_name_conflict_with_class.carbon
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: constants {
|
|
|
+// CHECK:STDOUT: %Class: type = class_type @Class [template]
|
|
|
+// CHECK:STDOUT: %.1: type = interface_type @.1 [template]
|
|
|
+// CHECK:STDOUT: %Self: %.1 = bind_symbolic_name Self 0 [symbolic]
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: file {
|
|
|
+// CHECK:STDOUT: package: <namespace> = namespace [template] {
|
|
|
+// CHECK:STDOUT: .Class = %Class.decl
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT: %Class.decl: type = class_decl @Class [template = constants.%Class] {}
|
|
|
+// CHECK:STDOUT: %.decl: type = interface_decl @.1 [template = constants.%.1] {}
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: interface @.1 {
|
|
|
+// CHECK:STDOUT: %Self: %.1 = bind_symbolic_name Self 0 [symbolic = constants.%Self]
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: !members:
|
|
|
+// CHECK:STDOUT: .Self = %Self
|
|
|
+// CHECK:STDOUT: witness = ()
|
|
|
+// CHECK:STDOUT: }
|
|
|
+// CHECK:STDOUT:
|
|
|
+// CHECK:STDOUT: class @Class;
|
|
|
+// CHECK:STDOUT:
|