blob: 11aac7c5cb189570a85d09c72352c25f8b203b32 [file] [log] [blame]
Roman Elizarov1f74a2d2018-06-29 19:19:45 +03001/*
2 * Copyright 2016-2018 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license.
3 */
4
Vsevolod Tolstopyatov74bcc922018-05-03 20:07:54 +03005package cases.internal
6
7public class PublicClass internal constructor() {
8
9 internal val property = 1
10
11 internal fun function() = property
12
13}