blob: 860240f1772d9fb6ff5cb84bc005c902ecb89be4 [file] [log] [blame]
Brian Silvermanffbc3082018-08-04 23:35:15 -07001// Copyright 2006 Alexander Nasonov.
2//
3// Distributed under the Boost Software License, Version 1.0. (See
4// accompanying file LICENSE_1_0.txt or copy at
5// http://www.boost.org/LICENSE_1_0.txt)
6
7#include <boost/any.hpp>
8
9int main()
10{
11 boost::any const a;
12 boost::any_cast<int&>(a);
13}
14