diff options
author | mikaelpeltier <mikaelpeltier@google.com> | 2015-05-21 11:55:51 +0000 |
---|---|---|
committer | Gerrit Code Review <noreply-gerritcodereview@google.com> | 2015-05-21 11:55:51 +0000 |
commit | 71b2c37ea6af5f594a16d166d2a6260bea12ff46 (patch) | |
tree | a08cf270312629fceaa71206c8069ca8674fd4dc /jack-tests/tests/com/android/jack/cast/explicit002/dx | |
parent | 0c0d4821eed54edbeca16e8deae5b4da57a89c3c (diff) | |
parent | 6f8866b42820efb83640abaae45c5f9dacb943c7 (diff) | |
download | toolchain_jack-71b2c37ea6af5f594a16d166d2a6260bea12ff46.tar.gz toolchain_jack-71b2c37ea6af5f594a16d166d2a6260bea12ff46.tar.bz2 toolchain_jack-71b2c37ea6af5f594a16d166d2a6260bea12ff46.zip |
Merge "Do not remove type of 'null' expression otherwise type is lost" into ub-jack-brest
Diffstat (limited to 'jack-tests/tests/com/android/jack/cast/explicit002/dx')
-rw-r--r-- | jack-tests/tests/com/android/jack/cast/explicit002/dx/Tests.java | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/jack-tests/tests/com/android/jack/cast/explicit002/dx/Tests.java b/jack-tests/tests/com/android/jack/cast/explicit002/dx/Tests.java new file mode 100644 index 00000000..4ce0161b --- /dev/null +++ b/jack-tests/tests/com/android/jack/cast/explicit002/dx/Tests.java @@ -0,0 +1,37 @@ +/* + * Copyright (C) 2015 The Android Open Source Project + * + * Licensed under the Apache License, Version 2.0 (the "License"); + * you may not use this file except in compliance with the License. + * You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the License for the specific language governing permissions and + * limitations under the License. + */ + +package com.android.jack.cast.explicit002.dx; + +import com.android.jack.cast.explicit002.jack.Explicit002; + +import org.junit.Assert; +import org.junit.Test; + +/** + * Tests about casting of null. + */ +public class Tests { + + @Test + public void test1() { + try { + Explicit002.castWithNull(); + Assert.fail(); + } catch (NullPointerException e) { + } + } +} |