mirror of
https://github.com/opnsense/src.git
synced 2026-02-22 09:21:31 -05:00
23 lines
464 B
C++
23 lines
464 B
C++
|
|
//===----------------------------------------------------------------------===//
|
||
|
|
//
|
||
|
|
// 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
|
||
|
|
}
|