mirror of
https://github.com/github/codeql.git
synced 2025-12-18 18:10:39 +01:00
15 lines
248 B
Java
15 lines
248 B
Java
package p;
|
|
|
|
public final class FluentAPI {
|
|
|
|
public FluentAPI returnsThis(String input) {
|
|
return this;
|
|
}
|
|
|
|
public class Inner {
|
|
public FluentAPI notThis(String input) {
|
|
return FluentAPI.this;
|
|
}
|
|
}
|
|
|
|
} |