xref: /llvm-project/libcxx/test/std/containers/Copyable.h (revision 4cd6ca102a94e1b64ba3f940cc26b4d7b2b82964)
1 //===----------------------------------------------------------------------===//
2 //
3 // Part of the LLVM Project, under the Apache License v2.0 with LLVM Exceptions.
4 // See https://llvm.org/LICENSE.txt for license information.
5 // SPDX-License-Identifier: Apache-2.0 WITH LLVM-exception
6 //
7 //===----------------------------------------------------------------------===//
8 
9 #ifndef COPYABLE_H
10 #define COPYABLE_H
11 
12 class Copyable
13 {
14 public:
15 };
16 
17 #endif // COPYABLE_H
18