Files
typeof/test/odr.hpp
Arkadiy Vertleyb 0dc2a5524b suppressed inspection unnamed complain
[SVN r35117]
2006-09-14 23:19:51 +00:00

18 lines
337 B
C++
Executable File

// Copyright (C) 2006 Arkadiy Vertleyb
// Use, modification and distribution is subject to the Boost Software
// License, Version 1.0. (http://www.boost.org/LICENSE_1_0.txt)
// boostinspect:nounnamed
#include <boost/typeof/typeof.hpp>
struct foo
{
typedef BOOST_TYPEOF(1 + 2.5) type;
};
namespace
{
typedef foo::type type;
}