1/*
2Copyright 2019 Glen Joseph Fernandes
3(glenjofe@gmail.com)
4
5Distributed under the Boost Software License, Version 1.0.
6(http://www.boost.org/LICENSE_1_0.txt)
7*/
8
9#include <boost/core/use_default.hpp>
10
11template<class, class = boost::use_default>
12struct type { };
13
14template struct type<int>;
15template struct type<void, boost::use_default>;
16

source code of boost/libs/core/test/use_default_test.cpp