2
0
mirror of https://github.com/boostorg/hana.git synced 2026-02-01 20:42:13 +00:00
Files
hana/example/detail/wrong.cpp
2015-04-07 19:37:28 -04:00

29 lines
675 B
C++

/*
@copyright Louis Dionne 2015
Distributed under the Boost Software License, Version 1.0.
(See accompanying file LICENSE.md or copy at http://boost.org/LICENSE_1_0.txt)
*/
#include <boost/hana/detail/wrong.hpp>
using namespace boost::hana;
//! [wrong]
template <typename T, typename U>
struct base_template {
// Can't write this because the assertion would always fire up:
// static_assert(false, "...");
// So instead we write this:
static_assert(detail::wrong<base_template<T, U>>{},
"base_template does not have a valid default definition");
};
template <>
struct base_template<int, int> {
// something useful
};
//! [wrong]
int main() { }