1*2d83392aSJoe Loser //===----------------------------------------------------------------------===//
2*2d83392aSJoe Loser //
3*2d83392aSJoe Loser // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4*2d83392aSJoe Loser // See https://llvm.org/LICENSE.txt for license information.
5*2d83392aSJoe Loser // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6*2d83392aSJoe Loser //
7*2d83392aSJoe Loser //===----------------------------------------------------------------------===//
8*2d83392aSJoe Loser 
9*2d83392aSJoe Loser // UNSUPPORTED: c++03
10*2d83392aSJoe Loser 
11*2d83392aSJoe Loser #include <tuple>
12*2d83392aSJoe Loser #include <type_traits>
13*2d83392aSJoe Loser 
14*2d83392aSJoe Loser static_assert(std::is_trivially_constructible<std::tuple<>>::value, "");
15