minix/external/bsd/libc++/dist/libcxx/test/utilities/utility/forward/forward6.fail.cpp

23 lines
464 B
C++
Raw Normal View History

//===----------------------------------------------------------------------===//
//
// The LLVM Compiler Infrastructure
//
// This file is dual licensed under the MIT and the University of Illinois Open
// Source Licenses. See LICENSE.TXT for details.
//
//===----------------------------------------------------------------------===//
// test forward
#include <utility>
struct A
{
};
int main()
{
A a;
std::forward(a); // error
}