[inlays] more previews for inlays with baked into text inlays

GitOrigin-RevId: 8c667c849ed00f1cc304f82e0ff7c8ec416fc395
This commit is contained in:
Roman Ivanov
2023-01-02 18:25:25 +01:00
committed by intellij-monorepo-bot
parent e123860359
commit d05f672784
3 changed files with 5 additions and 5 deletions

View File

@@ -1,8 +1,8 @@
abstract class Foo<T> {
void main() {
listOf(1, 2, 3).filter(it -> it % 2 == 0)
.map(it -> it * 2)
.map(it -> "item: " + it)
listOf(1, 2, 3).filter(it -> it % 2 == 0)<# Foo<Integer> #>
.map(it -> it * 2)<# Foo<int> #>
.map(it -> "item: " + it)<# Foo<Object> #>
.forEach(this::println);
}