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