blob: 1f4b37d946caa14d00b02983e61b7ea0722f2005 [file] [log] [blame]
//===----------------------------------------------------------------------===//
//
// 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
}