blob: 3fb843fb924109ffb3d58f2081c0874c68266037 [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.
#include "cpp_class_test.h"
Animal::Animal(int age) : age(age) {}
Animal::~Animal() {}
void Animal::speak() {}
int Animal::getAge() const { return age; }
int Animal::getCount() { return 42; }