blob: cf63e26395db6960d68dbe6d3a511ec037d5fbe5 [file] [log] [blame]
// Copyright 2018 The Fuchsia Authors. All rights reserved.
// Use of this source code is governed by a BSD-style license that can be
// found in the LICENSE file.
// ignore: one_member_abstracts
abstract class Checker<T> {
void check(T instance);
}