1# 2# Copyright (C) 2019 The Android Open Source Project 3# 4# Licensed under the Apache License, Version 2.0 (the "License"); 5# you may not use this file except in compliance with the License. 6# You may obtain a copy of the License at 7# 8# http://www.apache.org/licenses/LICENSE-2.0 9# 10# Unless required by applicable law or agreed to in writing, software 11# distributed under the License is distributed on an "AS IS" BASIS, 12# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. 13# See the License for the specific language governing permissions and 14# limitations under the License. 15# 16 17.class LSyntheticMethods; 18.super Ljava/lang/Object; 19 20# Expect to choose the non-hidden, virtual method. 21 22# Non-hidden methods 23.method public synthetic foo()Ljava/lang/Number; 24 .registers 1 25 const/4 v0, 0x0 26 return-object v0 27.end method 28 29.method private synthetic foo()Ljava/lang/Double; 30 .registers 1 31 const/4 v0, 0x0 32 return-object v0 33.end method 34 35# Hidden methods 36.method public synthetic foo()Ljava/lang/Integer; 37 .registers 1 38 const/4 v0, 0x0 39 return-object v0 40.end method 41 42.method private synthetic foo()Ljava/lang/Boolean; 43 .registers 1 44 const/4 v0, 0x0 45 return-object v0 46.end method 47