クラスの配列を使用して、INDEXで指定のクラス情報を引き出したいと考えているのですが、
★箇所にてinstance member 'test_1' cannot be used on type 'Otamesi'
と、インスタンスメンバーが使用できないとエラーになってしまいます。
このような使い方はできないのでしょうか。

class Otamesi: NSObject {
    class Test :NSObject {
        var test: Int!
        init (test: Int) {
            self.test = test
        }
    }

    private var test_1: Test = Test(test: 1)
    pricate var test_2: Test = Test(test: 2)

    private var test_All: [Test] = [test_1, test2]★
}