blob: d169fd3790651c4263d668534ac796b61086a2a7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
|
// SPDX-License-Identifier: MIT
//
// Copyright The SCons Foundation
class TestSCons {
public static void main(String[] args) {
Foo[] fooArray = new Foo[] { new Foo() };
}
}
class Foo { }
|