stream postfix template shouldn't be available for primitive arrays except long[], double[], int[]

This commit is contained in:
Dmitry Batkovich
2017-09-15 15:29:00 +03:00
parent 3fe36443a3
commit bd2c0418e8
4 changed files with 30 additions and 3 deletions
@@ -0,0 +1,5 @@
class Test {
void m(byte[] ss) {
ss.stream<caret>
}
}
@@ -0,0 +1,5 @@
class Test {
void m(byte[] ss) {
ss.stream
}
}