20 lines
456 B
C++
20 lines
456 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.
|
|||
|
//
|
|||
|
//===----------------------------------------------------------------------===//
|
|||
|
|
|||
|
// type_traits
|
|||
|
|
|||
|
// has_move_assign
|
|||
|
|
|||
|
#include <type_traits>
|
|||
|
|
|||
|
int main()
|
|||
|
{
|
|||
|
#error has_move_assign not implemented
|
|||
|
}
|