mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-24 09:20:53 +07:00
Differentiate between type parameters and parameters (IDEA-226683)
PR#1243 GitOrigin-RevId: a91176d9f95e2803da7c1973c58ce4ee492fb703
This commit is contained in:
committed by
intellij-monorepo-bot
parent
f4ad3b5771
commit
909433482c
@@ -0,0 +1,10 @@
|
||||
// Copyright 2000-2019 JetBrains s.r.o. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
||||
class Test {
|
||||
/**
|
||||
* Test. Don't report type param 'X' as duplicate of param 'X'.
|
||||
*
|
||||
* @param X my string
|
||||
* @param <X> my type
|
||||
*/
|
||||
<X> X getValue(String X) {return null;}
|
||||
}
|
||||
Reference in New Issue
Block a user