mirror of
https://github.com/boostorg/typeof.git
synced 2025-11-17 07:59:24 +01:00
11 lines
134 B
C++
Executable File
11 lines
134 B
C++
Executable File
#include <boost/typeof/typeof.hpp>
|
|
|
|
struct foo
|
|
{
|
|
typedef BOOST_TYPEOF(1 + 2.5) type;
|
|
};
|
|
|
|
namespace
|
|
{
|
|
typedef foo::type type;
|
|
} |