| 12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576 |
- // 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
- // TIP: To test this file alone, run:
- // TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/var/fail_not_copyable.carbon
- // TIP: To dump output, run:
- // TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/var/fail_not_copyable.carbon
- class X {
- }
- fn F(x: X) {
- // TODO: Strings should eventually be copyable, once we decide how to
- // represent them.
- // CHECK:STDERR: fail_not_copyable.carbon:[[@LINE+4]]:19: ERROR: Cannot copy value of type `String`.
- // CHECK:STDERR: var s: String = "hello";
- // CHECK:STDERR: ^~~~~~~
- // CHECK:STDERR:
- var s: String = "hello";
- // TODO: Decide on rules for when classes are copyable.
- // CHECK:STDERR: fail_not_copyable.carbon:[[@LINE+3]]:14: ERROR: Cannot copy value of type `X`.
- // CHECK:STDERR: var y: X = x;
- // CHECK:STDERR: ^
- var y: X = x;
- }
- // CHECK:STDOUT: --- fail_not_copyable.carbon
- // CHECK:STDOUT:
- // CHECK:STDOUT: constants {
- // CHECK:STDOUT: %X: type = class_type @X [template]
- // CHECK:STDOUT: %.1: type = struct_type {} [template]
- // CHECK:STDOUT: %F.type: type = fn_type @F [template]
- // CHECK:STDOUT: %.2: type = tuple_type () [template]
- // CHECK:STDOUT: %F: %F.type = struct_value () [template]
- // CHECK:STDOUT: %.3: type = ptr_type %.1 [template]
- // CHECK:STDOUT: %.4: type = ptr_type String [template]
- // CHECK:STDOUT: %.5: String = string_literal "hello" [template]
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: file {
- // CHECK:STDOUT: package: <namespace> = namespace [template] {
- // CHECK:STDOUT: .Core = %Core
- // CHECK:STDOUT: .X = %X.decl
- // CHECK:STDOUT: .F = %F.decl
- // CHECK:STDOUT: }
- // CHECK:STDOUT: %Core: <namespace> = namespace [template] {}
- // CHECK:STDOUT: %X.decl: type = class_decl @X [template = constants.%X] {}
- // CHECK:STDOUT: %F.decl: %F.type = fn_decl @F [template = constants.%F] {
- // CHECK:STDOUT: %X.ref: type = name_ref X, %X.decl [template = constants.%X]
- // CHECK:STDOUT: %x.loc14_6.1: %X = param x
- // CHECK:STDOUT: @F.%x: %X = bind_name x, %x.loc14_6.1
- // CHECK:STDOUT: }
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: class @X {
- // CHECK:STDOUT: !members:
- // CHECK:STDOUT: .Self = constants.%X
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
- // CHECK:STDOUT: fn @F(%x: %X) {
- // CHECK:STDOUT: !entry:
- // CHECK:STDOUT: %s.var: ref String = var s
- // CHECK:STDOUT: %s: ref String = bind_name s, %s.var
- // CHECK:STDOUT: %.loc21: String = string_literal "hello" [template = constants.%.5]
- // CHECK:STDOUT: assign %s.var, <error>
- // CHECK:STDOUT: %X.ref: type = name_ref X, file.%X.decl [template = constants.%X]
- // CHECK:STDOUT: %y.var: ref %X = var y
- // CHECK:STDOUT: %y: ref %X = bind_name y, %y.var
- // CHECK:STDOUT: %x.ref: %X = name_ref x, %x
- // CHECK:STDOUT: assign %y.var, <error>
- // CHECK:STDOUT: return
- // CHECK:STDOUT: }
- // CHECK:STDOUT:
|