implicit-function-conversion.cpp 218 B

1234567
  1. // RUN: %clang_cc1 -emit-llvm %s -o - -triple=x86_64-unknown-linux -std=c++17 | FileCheck %s
  2. double a(double) noexcept;
  3. int b(double (&)(double));
  4. // CHECK: call i32 @_Z1bRFddE(double (double)* @_Z1ad)
  5. int c = b(a);