mirror of
https://github.com/TTimo/GtkRadiant.git
synced 2025-01-11 04:21:08 +00:00
19 lines
204 B
C++
19 lines
204 B
C++
|
|
||
|
#include "array.h"
|
||
|
|
||
|
namespace
|
||
|
{
|
||
|
class Bleh
|
||
|
{
|
||
|
Array<int> m_array;
|
||
|
public:
|
||
|
Bleh() : m_array(16)
|
||
|
{
|
||
|
}
|
||
|
};
|
||
|
|
||
|
void testAutoArray()
|
||
|
{
|
||
|
Array<Bleh> array(32);
|
||
|
}
|
||
|
}
|