summaryrefslogtreecommitdiffstats
path: root/test/AST/function-alias.cpp
blob: a9a2b79ad8bbe756f7ddd18bda1b72a444cf5841 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
// RUN: %clang_cc1 -std=c++17 -fsyntax-only %s

// Verify that ASTContext::getFunctionTypeWithExceptionSpec (called through
// ASTContext::hasSameFunctionTypeIgnoringExceptionSpec from
// ExprEvaluatorBase::handleCallExpr in lib/AST/ExprConstant.cpp) does not crash
// for a type alias.

constexpr int f() noexcept { return 0; }

using F = int();

constexpr int g(F * p) { return p(); }

constexpr int n = g(f);