blob: 48c8f2437c803fce9b7e5e1e42f9834aa6e9cf5d [file]
// Copyright (c) 2026, 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.
class Animal {
public:
int age;
Animal(int age);
~Animal();
void speak();
int getAge() const;
};