Files
typeof/test/odr.hpp
Arkadiy Vertleyb dfb50b4e37 inspection report fixes
[SVN r35051]
2006-09-09 17:25:09 +00:00

16 lines
310 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)
#include <boost/typeof/typeof.hpp>
struct foo
{
typedef BOOST_TYPEOF(1 + 2.5) type;
};
namespace
{
typedef foo::type type;
}