26 lines
589 B
C++
26 lines
589 B
C++
|
//===----------------------------------------------------------------------===//
|
|||
|
//
|
|||
|
// <20><><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD><EFBFBD>The LLVM Compiler Infrastructure
|
|||
|
//
|
|||
|
// This file is distributed under the University of Illinois Open Source
|
|||
|
// License. See LICENSE.TXT for details.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// <utility>
|
|||
|
|
|||
|
// template <class T1, class T2> struct pair
|
|||
|
|
|||
|
// constexpr pair();
|
|||
|
|
|||
|
#include <utility>
|
|||
|
#include <cassert>
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
typedef std::pair<float, short*> P;
|
|||
|
P p;
|
|||
|
assert(p.first == 0.0f);
|
|||
|
assert(p.second == nullptr);
|
|||
|
}
|