blob: 1e8b72da3d5a7ff453961c5f846e22f2a8d33049 [file] [log] [blame]
// Copyright (c) 2020, the Dart project authors. Please see the AUTHORS file
// for details. All rights reserved. Use of this source code is governed by a
// BSD-style license that can be found in the LICENSE file.
struct Struct1
{
};
struct Test_Struct2
{
};
void func1(struct Struct1 *s);
void test_func2(struct Test_Struct2 *s);
enum Enum1
{
a = 0,
b = 1,
c = 2
};
enum Test_Enum2
{
e = 0,
f = 1,
g = 2
};