#include "stdafx.h"
public ref class MyClass
{
public:
static const int i = 15;
literal int j = 25;
};
template
void f()
{ }
int main()
{
//int a1[MyClass::i]; // error: static const MyClass::i isn't considered a constant
int a2[MyClass::j]; // OK
//f(); // error
f(); // OK
}