Search Options

Results per page
Sort
Preferred Languages
Advance

Results 81 - 90 of 1,182 for redeclared (0.27 sec)

  1. platforms/core-configuration/configuration-cache/src/integTest/groovy/org/gradle/internal/cc/impl/ConfigurationCacheIncompatibleTasksIntegrationTest.groovy

    Registered: Wed Jun 12 18:38:38 UTC 2024
    - Last Modified: Sat Jun 08 11:29:25 UTC 2024
    - 10.3K bytes
    - Viewed (0)
  2. src/go/doc/testdata/b.1.golden

    	func NotAFactory() int
    
    
    TYPES
    	// 
    	type T struct{}	// T
    
    	// 
    	var V T	// v
    
    	// 
    	func (x *T) M()
    
    	// Should only appear if AllDecls is set. 
    	type comparable struct{}	// overrides a predeclared type comparable
    
    	// Associated with comparable type if AllDecls is set. 
    	func ComparableFactory() comparable
    
    	// 
    	type notExported int
    
    	// 
    	const (
    		C1	notExported	= iota
    		C2
    		c3
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Feb 11 16:05:02 UTC 2022
    - 1.1K bytes
    - Viewed (0)
  3. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/capturing/nestedOuterClass.ir.txt

                CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PLUS
                  $this: CALL 'public final fun plus (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PLUS
                    $this: CALL 'public final fun callFoo (foo: <root>.Foo): kotlin.Int declared in <root>.ContextKt' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Jan 30 11:41:26 UTC 2024
    - 2K bytes
    - Viewed (0)
  4. analysis/analysis-api/testData/components/compilerFacility/compilation/classKinds.ir.txt

              public open fun toString (): kotlin.String [fake_override] declared in <root>.Intf
            $this: VALUE_PARAMETER name:<this> type:kotlin.Any
          FUN name:run visibility:public modality:OPEN <> ($this:<root>.Generic<T of <root>.Generic>) returnType:kotlin.Unit
            overridden:
              public abstract fun run (): kotlin.Unit declared in <root>.Intf
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Thu Apr 04 09:35:38 UTC 2024
    - 25K bytes
    - Viewed (0)
  5. test/decl.go

    	_, _ = a, b
    	return // tests that result var is in scope for redeclaration
    }
    
    func main() {
    	i, f, s := f3()
    	j, f := f2() // redeclare f
    	k := f1()
    	m, g, s := f3()
    	m, h, s := f3()
    	{
    		// new block should be ok.
    		i, f, s := f3()
    		j, f := f2() // redeclare f
    		k := f1()
    		m, g, s := f3()
    		m, h, s := f3()
    		_, _, _, _, _, _, _, _, _ = i, f, s, j, k, m, g, s, h
    	}
    	if y := x(); y != "3" {
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Feb 12 18:17:49 UTC 2013
    - 926 bytes
    - Viewed (0)
  6. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsage.ir.txt

                              CALL 'public final fun EQEQ (arg0: kotlin.Any?, arg1: kotlin.Any?): kotlin.Boolean declared in kotlin.internal.ir' type=kotlin.Boolean origin=EQEQ
                                arg0: CALL 'public final fun rem (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=PERC
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 4.9K bytes
    - Viewed (0)
  7. analysis/analysis-api/testData/components/compilerFacility/compilation/javaAnnotationWithVararg.ir.txt

                $this: GET_VAR '<this>: <root>.Child declared in <root>.Child.onCreate' type=<root>.Child origin=null
              CALL 'private final fun bar (): kotlin.Unit declared in <root>.Child' type=kotlin.Unit origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 16 19:18:28 UTC 2024
    - 3K bytes
    - Viewed (0)
  8. analysis/analysis-api/testData/components/compilerFacility/compilation/codeFragments/inlineFunctionUsageSource.ir.txt

                        RETURN type=kotlin.Nothing from='local final fun <anonymous> (it: kotlin.Int): kotlin.Int declared in <root>.CodeFragment.run'
                          CALL 'public final fun times (other: kotlin.Int): kotlin.Int [operator] declared in kotlin.Int' type=kotlin.Int origin=MUL
                            $this: GET_VAR 'it: kotlin.Int declared in <root>.CodeFragment.run.<anonymous>' type=kotlin.Int origin=null
    Registered: Wed Jun 12 09:53:16 UTC 2024
    - Last Modified: Tue Apr 30 10:27:47 UTC 2024
    - 2.8K bytes
    - Viewed (0)
  9. src/internal/types/testdata/check/vardecl.go

    		var x2 /* ERROR "declared and not used" */ int
    		x1 = 1
    		(x2) = 2
    
    		y1 /* ERROR "declared and not used" */ := 1
    		y2 /* ERROR "declared and not used" */ := 2
    		y1 = 1
    		(y1) = 2
    	}
    
    	if x /* ERROR "declared and not used" */ := 0; a < b {}
    
    	switch x /* ERROR "declared and not used" */, y := 0, 1; a {
    	case 0:
    		_ = y
    	case 1:
    		x /* ERROR "declared and not used" */ := 0
    	}
    
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Jan 17 19:54:27 UTC 2023
    - 5.8K bytes
    - Viewed (0)
  10. test/fixedbugs/issue18655.go

    func (T) m() {}
    func (T) m() {} // ERROR "already declared|redefinition"
    func (A) m() {} // ERROR "already declared|redefinition"
    func (A) m() {} // ERROR "already declared|redefinition"
    func (B) m() {} // ERROR "already declared|redefinition"
    func (B) m() {} // ERROR "already declared|redefinition"
    
    func (*T) m() {} // ERROR "already declared|redefinition"
    func (*A) m() {} // ERROR "already declared|redefinition"
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Tue Sep 27 21:59:19 UTC 2022
    - 701 bytes
    - Viewed (0)
Back to top