mirror of
https://github.com/carbon-language/carbon-lang.git
synced 2026-09-24 22:02:23 +01:00
Implementation of unused pattern bindings #2022, continued. Whereas previous PR #6460 took care of parsing, and PR #6479 prepared the stage by using _ in some test cases, this PR has the the actual implementation, using a simple dataflow analysis. --------- Co-authored-by: Burak Emir <bqe@google.com> Co-authored-by: jonmeow <jperkins@google.com>
67 lines
2.6 KiB
Plaintext
67 lines
2.6 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
|
|
//
|
|
// INCLUDE-FILE: toolchain/testing/testdata/min_prelude/full.carbon
|
|
//
|
|
// AUTOUPDATE
|
|
// TIP: To test this file alone, run:
|
|
// TIP: bazel test //toolchain/testing:file_test --test_arg=--file_tests=toolchain/check/testdata/interop/cpp/void.carbon
|
|
// TIP: To dump output, run:
|
|
// TIP: bazel run //toolchain/testing:file_test -- --dump_output --file_tests=toolchain/check/testdata/interop/cpp/void.carbon
|
|
|
|
// --- void_not_incomplete.carbon
|
|
|
|
library "[[@TEST_NAME]]";
|
|
|
|
import Cpp;
|
|
|
|
// This is valid, unlike in C++, because `Cpp.void` is complete but abstract in
|
|
// Carbon. Values of type `Cpp.void` exist, but objects of that type do not.
|
|
fn F(unused x: Cpp.void) {}
|
|
|
|
// --- fail_void_abstract.carbon
|
|
|
|
library "[[@TEST_NAME]]";
|
|
|
|
import Cpp;
|
|
|
|
fn G() {
|
|
// CHECK:STDERR: fail_void_abstract.carbon:[[@LINE+7]]:17: error: binding pattern has abstract type `Cpp.void` in `var` pattern [AbstractTypeInVarPattern]
|
|
// CHECK:STDERR: var unused x: Cpp.void;
|
|
// CHECK:STDERR: ^~~~~~~~
|
|
// CHECK:STDERR: {{.*}}/prelude/types/cpp/void.carbon:24:1: note: class was declared abstract here [ClassAbstractHere]
|
|
// CHECK:STDERR: abstract class CppCompat.VoidBase {
|
|
// CHECK:STDERR: ^~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~
|
|
// CHECK:STDERR:
|
|
var unused x: Cpp.void;
|
|
}
|
|
|
|
// --- fail_void_argument.carbon
|
|
|
|
library "[[@TEST_NAME]]";
|
|
|
|
import Cpp inline "void F(int);";
|
|
|
|
fn G(v: Cpp.void) {
|
|
// CHECK:STDERR: fail_void_argument.carbon:[[@LINE+7]]:10: error: no matching function for call to 'F' [CppInteropParseError]
|
|
// CHECK:STDERR: 14 | Cpp.F(v);
|
|
// CHECK:STDERR: | ^
|
|
// CHECK:STDERR: fail_void_argument.carbon:[[@LINE-6]]:6: note: candidate function not viable: cannot convert argument of incomplete type 'void' to 'int' for 1st argument [CppInteropParseNote]
|
|
// CHECK:STDERR: 4 | void F(int);
|
|
// CHECK:STDERR: | ^ ~~~
|
|
// CHECK:STDERR:
|
|
Cpp.F(v);
|
|
}
|
|
|
|
fn H(p: Cpp.void*) {
|
|
// CHECK:STDERR: fail_void_argument.carbon:[[@LINE+7]]:11: error: no matching function for call to 'F' [CppInteropParseError]
|
|
// CHECK:STDERR: 25 | Cpp.F(*p);
|
|
// CHECK:STDERR: | ^
|
|
// CHECK:STDERR: fail_void_argument.carbon:[[@LINE-17]]:6: note: candidate function not viable: cannot convert argument of incomplete type 'void' to 'int' for 1st argument [CppInteropParseNote]
|
|
// CHECK:STDERR: 4 | void F(int);
|
|
// CHECK:STDERR: | ^ ~~~
|
|
// CHECK:STDERR:
|
|
Cpp.F(*p);
|
|
}
|