verbose.carbon 513 B

1234567891011121314
  1. // Part of the Carbon Language project, under the Apache License v2.0 with LLVM
  2. // Exceptions. See /LICENSE for license information.
  3. // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
  4. //
  5. // NOAUTOUPDATE
  6. // RUN: %{carbon} -v dump semantics-ir %s | %{FileCheck-allow-unmatched}
  7. //
  8. // Only checks a couple statements in order to minimize manual update churn.
  9. // CHECK:STDERR: Push 0: FunctionIntroducer -> node<invalid>
  10. // CHECK:STDERR: AddNode block0: BindName(str0, node{{[0-9]+}})
  11. fn Foo() {
  12. return;
  13. }