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