blob: 9a5679d90989ad15eb71336557f6c9b5d15069a0 [file] [log] [blame]
// Copyright (c) 2017, the R8 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.
package com.android.tools.r8.shaking.forceproguardcompatibility;
public class TestClassWithoutDefaultConstructor {
public TestClassWithoutDefaultConstructor(int i) {
}
public void method() {
}
}