llvm-project/clang/test/AST/ast-print-int128.cpp

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

16 lines
306 B
C++
Raw Normal View History

// RUN: %clang_cc1 -ast-print -std=c++20 %s -o - -triple x86_64-linux | FileCheck %s
template <bool>
struct enable_if {
};
template <__uint128_t x, typename = typename enable_if<x != 0>::type>
void f();
template <__int128_t>
void f();
using T = decltype(f<0>());
// CHECK: using T = decltype(f<0>());