blob: e9819fa4e8ea50aceb26ad6fa479d128386d5d51 [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.special
6
7public class ClassWithLateInitMembers internal constructor() {
8
9 public lateinit var publicLateInitWithInternalSet: String
10 internal set
11
12 internal lateinit var internalLateInit: String
13
14}