summaryrefslogtreecommitdiff
path: root/libs/concept_check/class_concept_fail_expected.cpp
blob: 74268e36e62e42af05b0de65132bc8e6ab93211b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
// (C) Copyright Jeremy Siek, David Abrahams 2000-2006.
// Distributed under the Boost Software License, Version 1.0. (See
// accompanying file LICENSE_1_0.txt or copy at
// http://www.boost.org/LICENSE_1_0.txt)
//
// Change Log:
// 20 Jan 2001 - Added warning suppression (David Abrahams)

#include <boost/concept_check.hpp>

/*

  This file verifies that class_requires of the Boost Concept Checking
  Library catches errors when it is supposed to.

*/

struct foo { };

template <class T>
class class_requires_test
{
    BOOST_CONCEPT_ASSERT((boost::EqualityComparable<foo>));
};

int
main()
{
    class_requires_test<int> x;
    (void)x; // suppress unused variable warning
    return 0;
}